Project

General

Profile

1
package model;
2

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

    
6

    
7
/**
8
 * The persistent class for the gold_organizations database table.
9
 * 
10
 */
11
@Entity
12
@Table(name="gold_organizations")
13
@NamedQuery(name="GoldOrganization.findAll", query="SELECT g FROM GoldOrganization g")
14
public class GoldOrganization implements Serializable {
15
	private static final long serialVersionUID = 1L;
16

    
17
	private String country;
18

    
19
	private String name;
20

    
21
	private String organization;
22

    
23
	private String project;
24

    
25
	private String shortname;
26

    
27
	public GoldOrganization() {
28
	}
29

    
30
	public String getCountry() {
31
		return this.country;
32
	}
33

    
34
	public void setCountry(String country) {
35
		this.country = country;
36
	}
37

    
38
	public String getName() {
39
		return this.name;
40
	}
41

    
42
	public void setName(String name) {
43
		this.name = name;
44
	}
45

    
46
	public String getOrganization() {
47
		return this.organization;
48
	}
49

    
50
	public void setOrganization(String organization) {
51
		this.organization = organization;
52
	}
53

    
54
	public String getProject() {
55
		return this.project;
56
	}
57

    
58
	public void setProject(String project) {
59
		this.project = project;
60
	}
61

    
62
	public String getShortname() {
63
		return this.shortname;
64
	}
65

    
66
	public void setShortname(String shortname) {
67
		this.shortname = shortname;
68
	}
69

    
70
}
(2-2/3)