Project

General

Profile

1
package eu.dnetlib.openaire.context;
2

    
3
import java.util.List;
4
import java.util.Map;
5

    
6
public class Category {
7

    
8
	private String id;
9

    
10
	private String label;
11

    
12
	private boolean claim;
13

    
14
	private Map<String, List<Param>> params;
15

    
16
	private List<Concept> concepts;
17

    
18
	public String getId() {
19
		return id;
20
	}
21

    
22
	public String getLabel() {
23
		return label;
24
	}
25

    
26
	public boolean isClaim() {
27
		return claim;
28
	}
29

    
30
	public Map<String, List<Param>> getParams() {
31
		return params;
32
	}
33

    
34
	public List<Concept> getConcepts() {
35
		return concepts;
36
	}
37

    
38
	public Category setId(final String id) {
39
		this.id = id;
40
		return this;
41
	}
42

    
43
	public Category setLabel(final String label) {
44
		this.label = label;
45
		return this;
46
	}
47

    
48
	public Category setClaim(final boolean claim) {
49
		this.claim = claim;
50
		return this;
51
	}
52

    
53
	public Category setParams(final Map<String, List<Param>> params) {
54
		this.params = params;
55
		return this;
56
	}
57

    
58
	public Category setConcepts(final List<Concept> concepts) {
59
		this.concepts = concepts;
60
		return this;
61
	}
62

    
63
}
(1-1/12)