Project

General

Profile

1
package eu.dnetlib.parthenos.registry;
2

    
3
/**
4
 * Created by Alessia Bardi on 06/10/2017.
5
 *
6
 * @author Alessia Bardi
7
 */
8
public class ParthenosRegistryResource {
9

    
10
	private String uuid;
11
	private String type;
12
	private String json;
13

    
14
	public String getUuid() {
15
		return uuid;
16
	}
17

    
18
	public ParthenosRegistryResource setUuid(final String uuid) {
19
		this.uuid = uuid;
20
		return this;
21
	}
22

    
23
	public String getType() {
24
		return type;
25
	}
26

    
27
	public ParthenosRegistryResource setType(final String type) {
28
		this.type = type;
29
		return this;
30
	}
31

    
32
	public String getJson() {
33
		return json;
34
	}
35

    
36
	public ParthenosRegistryResource setJson(final String json) {
37
		this.json = json;
38
		return this;
39
	}
40
}
(3-3/6)