Project

General

Profile

1
package eu.dnetlib.openaire.context;
2

    
3
public class CategorySummary {
4

    
5
	private String id;
6

    
7
	private String label;
8

    
9
	private boolean hasConcept;
10

    
11
	public String getId() {
12
		return id;
13
	}
14

    
15
	public String getLabel() {
16
		return label;
17
	}
18

    
19
	public boolean isHasConcept() {
20
		return hasConcept;
21
	}
22

    
23
	public CategorySummary setId(final String id) {
24
		this.id = id;
25
		return this;
26
	}
27

    
28
	public CategorySummary setLabel(final String label) {
29
		this.label = label;
30
		return this;
31
	}
32

    
33
	public CategorySummary setHasConcept(final boolean hasConcept) {
34
		this.hasConcept = hasConcept;
35
		return this;
36
	}
37

    
38
}
(2-2/12)