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_coordinators database table.
9
 * 
10
 */
11
@Entity
12
@Table(name="gold_coordinators")
13
@NamedQuery(name="GoldCoordinator.findAll", query="SELECT g FROM GoldCoordinator g")
14
public class GoldCoordinator implements Serializable {
15
	private static final long serialVersionUID = 1L;
16

    
17
	private Boolean active;
18

    
19
	private String email;
20

    
21
	private String firstname;
22

    
23
	private String lastname;
24

    
25
	private String organization;
26

    
27
	private String project;
28

    
29
	private String telephone;
30

    
31
	public GoldCoordinator() {
32
	}
33

    
34
	public Boolean getActive() {
35
		return this.active;
36
	}
37

    
38
	public void setActive(Boolean active) {
39
		this.active = active;
40
	}
41

    
42
	public String getEmail() {
43
		return this.email;
44
	}
45

    
46
	public void setEmail(String email) {
47
		this.email = email;
48
	}
49

    
50
	public String getFirstname() {
51
		return this.firstname;
52
	}
53

    
54
	public void setFirstname(String firstname) {
55
		this.firstname = firstname;
56
	}
57

    
58
	public String getLastname() {
59
		return this.lastname;
60
	}
61

    
62
	public void setLastname(String lastname) {
63
		this.lastname = lastname;
64
	}
65

    
66
	public String getOrganization() {
67
		return this.organization;
68
	}
69

    
70
	public void setOrganization(String organization) {
71
		this.organization = organization;
72
	}
73

    
74
	public String getProject() {
75
		return this.project;
76
	}
77

    
78
	public void setProject(String project) {
79
		this.project = project;
80
	}
81

    
82
	public String getTelephone() {
83
		return this.telephone;
84
	}
85

    
86
	public void setTelephone(String telephone) {
87
		this.telephone = telephone;
88
	}
89

    
90
}
(1-1/3)