Project

General

Profile

1
package eu.dnetlib.openaire.community;
2

    
3
import com.fasterxml.jackson.annotation.JsonAutoDetect;
4
import io.swagger.annotations.ApiModelProperty;
5

    
6
@JsonAutoDetect
7
public class CommunityProject {
8

    
9
	@ApiModelProperty(value = "OpenAIRE identifier for this project, if available", required = false)
10
	private String openaireId;
11

    
12
	@ApiModelProperty(value = "the community identifier this project belongs to", required = true)
13
	private String communityId;
14

    
15
	@ApiModelProperty(value = "identifies this project within the context it belongs to", required = true)
16
	private String id;
17

    
18
	@ApiModelProperty(value = "project name", required = true)
19
	private String name;
20

    
21
	@ApiModelProperty(value = "project acronym", required = false)
22
	private String acronym;
23

    
24
	@ApiModelProperty(value = "project funder", required = true)
25
	private String funder;
26

    
27
	@ApiModelProperty(value = "project grant id", required = true)
28
	private String grantId;
29

    
30
	public String getOpenaireId() {
31
		return openaireId;
32
	}
33

    
34
	public void setOpenaireId(final String openaireId) {
35
		this.openaireId = openaireId;
36
	}
37

    
38
	public String getCommunityId() {
39
		return communityId;
40
	}
41

    
42
	public void setCommunityId(final String communityId) {
43
		this.communityId = communityId;
44
	}
45

    
46
	public String getId() {
47
		return id;
48
	}
49

    
50
	public void setId(final String id) {
51
		this.id = id;
52
	}
53

    
54
	public String getName() {
55
		return name;
56
	}
57

    
58
	public void setName(final String name) {
59
		this.name = name;
60
	}
61

    
62
	public String getAcronym() {
63
		return acronym;
64
	}
65

    
66
	public void setAcronym(final String acronym) {
67
		this.acronym = acronym;
68
	}
69

    
70
	public String getFunder() {
71
		return funder;
72
	}
73

    
74
	public void setFunder(final String funder) {
75
		this.funder = funder;
76
	}
77

    
78
	public String getGrantId() {
79
		return grantId;
80
	}
81

    
82
	public void setGrantId(final String grantId) {
83
		this.grantId = grantId;
84
	}
85

    
86
}
(9-9/12)