Project

General

Profile

1
package model;
2

    
3
import javax.persistence.*;
4
import java.io.Serializable;
5
import java.util.Date;
6

    
7

    
8
/**
9
 * The persistent class for the gold_projects database table.
10
 * 
11
 */
12
@Entity
13
@Table(name="gold_projects")
14
@NamedQuery(name="GoldProject.findAll", query="SELECT g FROM GoldProject g")
15
public class GoldProject implements Serializable {
16
	private static final long serialVersionUID = 1L;
17
	
18
	@Column(columnDefinition = "text")
19
	private String acronym;
20

    
21
	@Column(columnDefinition = "text")
22
	private String call;
23

    
24
	@Temporal(TemporalType.DATE)
25
	private Date enddate;
26

    
27
	
28
	private String funder;
29

    
30
	@Column(columnDefinition = "text")
31
	private String fundingstream;
32

    
33
	@Column(columnDefinition = "text")
34
	private String grant;
35

    
36
	@Id
37
	@Column(columnDefinition = "text")
38
	private String id;
39

    
40
	private Boolean sc39;
41

    
42
	@Column(columnDefinition = "text")
43
	private String scientificarea;
44

    
45
	@Column(columnDefinition = "text")
46
	private String source;
47

    
48
	@Temporal(TemporalType.DATE)
49
	private Date startdate;
50

    
51
	@Column(columnDefinition = "text")
52
	private String title;
53

    
54
	@Column(columnDefinition = "text")
55
	private String url;
56

    
57
	public GoldProject() {
58
	}
59

    
60
	public String getAcronym() {
61
		return this.acronym;
62
	}
63

    
64
	public void setAcronym(String acronym) {
65
		this.acronym = acronym;
66
	}
67

    
68
	public String getCall() {
69
		return this.call;
70
	}
71

    
72
	public void setCall(String call) {
73
		this.call = call;
74
	}
75

    
76
	public Date getEnddate() {
77
		return this.enddate;
78
	}
79

    
80
	public void setEnddate(Date enddate) {
81
		this.enddate = enddate;
82
	}
83

    
84
	public String getFunder() {
85
		return this.funder;
86
	}
87

    
88
	public void setFunder(String funder) {
89
		this.funder = funder;
90
	}
91

    
92
	public String getFundingstream() {
93
		return this.fundingstream;
94
	}
95

    
96
	public void setFundingstream(String fundingstream) {
97
		this.fundingstream = fundingstream;
98
	}
99

    
100
	public String getGrant() {
101
		return this.grant;
102
	}
103

    
104
	public void setGrant(String grant) {
105
		this.grant = grant;
106
	}
107

    
108
	public String getId() {
109
		return this.id;
110
	}
111

    
112
	public void setId(String id) {
113
		this.id = id;
114
	}
115

    
116
	public Boolean getSc39() {
117
		return this.sc39;
118
	}
119

    
120
	public void setSc39(Boolean sc39) {
121
		this.sc39 = sc39;
122
	}
123

    
124
	public String getScientificarea() {
125
		return this.scientificarea;
126
	}
127

    
128
	public void setScientificarea(String scientificarea) {
129
		this.scientificarea = scientificarea;
130
	}
131

    
132
	public String getSource() {
133
		return this.source;
134
	}
135

    
136
	public void setSource(String source) {
137
		this.source = source;
138
	}
139

    
140
	public Date getStartdate() {
141
		return this.startdate;
142
	}
143

    
144
	public void setStartdate(Date startdate) {
145
		this.startdate = startdate;
146
	}
147

    
148
	public String getTitle() {
149
		return this.title;
150
	}
151

    
152
	public void setTitle(String title) {
153
		this.title = title;
154
	}
155

    
156
	public String getUrl() {
157
		return this.url;
158
	}
159

    
160
	public void setUrl(String url) {
161
		this.url = url;
162
	}
163

    
164
}
(3-3/3)