Project

General

Profile

1
package eu.dnetlib.domain.enabling;
2

    
3
public class ListResourceProfilesType {
4

    
5
	protected String format;
6
	protected String resourceType;
7

    
8
	public String getFormat() {
9
		return format;
10
	}
11

    
12
	public void setFormat(String format) {
13
		this.format = format;
14
	}
15

    
16
	public String getResourceType() {
17
		return resourceType;
18
	}
19

    
20
	public void setResourceType(String resourceType) {
21
		this.resourceType = resourceType;
22
	}
23
}
(2-2/11)