Project

General

Profile

1

    
2
package eu.dnetlib.data.mdstore.plugins.objects.dli;
3

    
4
public class DliObjectType {
5

    
6
	private String subType;
7
	private String type;
8

    
9
	public String getSubType() {
10
		return subType;
11
	}
12

    
13
	public void setSubType(final String subType) {
14
		this.subType = subType;
15
	}
16

    
17
	public String getType() {
18
		return type;
19
	}
20

    
21
	public void setType(final String type) {
22
		this.type = type;
23
	}
24

    
25
}
(3-3/7)