-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProject.java
More file actions
162 lines (123 loc) · 2.58 KB
/
Project.java
File metadata and controls
162 lines (123 loc) · 2.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
package crawler_interface;
import java.util.Date;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonFormat;
public class Project {
private String acronym;
private int axis;
private int objective;
private String label;
private String summary;
private String call;
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd")
private Date start;
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd")
private Date end;
private String type;
private double erdf;
private double ipa;
private double amount;
private String cofinancing;
private String status;
private String deliverablesUrl;
private List<Partner> partners;
public Project() {
// DEFAULT CONSTRUCTOR
}
public String getAcronym() {
return acronym;
}
public void setAcronym(String acronym) {
this.acronym = acronym;
}
public int getAxis() {
return axis;
}
public void setAxis(int axis) {
this.axis = axis;
}
public int getObjective() {
return objective;
}
public void setObjective(int objective) {
this.objective = objective;
}
public String getLabel() {
return label;
}
public void setLabel(String label) {
this.label = label;
}
public String getSummary() {
return summary;
}
public void setSummary(String summary) {
this.summary = summary;
}
public String getCall() {
return call;
}
public void setCall(String call) {
this.call = call;
}
public Date getStart() {
return start;
}
public void setStart(Date start) {
this.start = start;
}
public Date getEnd() {
return end;
}
public void setEnd(Date end) {
this.end = end;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public double getErdf() {
return erdf;
}
public void setErdf(double erdf) {
this.erdf = erdf;
}
public double getIpa() {
return ipa;
}
public void setIpa(double ipa) {
this.ipa = ipa;
}
public double getAmount() {
return amount;
}
public void setAmount(double amount) {
this.amount = amount;
}
public String getCofinancing() {
return cofinancing;
}
public void setCofinancing(String cofinancing) {
this.cofinancing = cofinancing;
}
public List<Partner> getPartners() {
return partners;
}
public void setPartners(List<Partner> partners) {
this.partners = partners;
}
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
public String getDeliverablesUrl() {
return deliverablesUrl;
}
public void setDeliverablesUrl(String deliverablesUrl) {
this.deliverablesUrl = deliverablesUrl;
}
}