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 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252
| package be.qspin.qats.entities;
// Generated 26-juil.-2007 11:17:10 by Hibernate Tools 3.2.0.beta7
import java.util.Date;
import java.util.HashSet;
import java.util.Set;
/**
* Define an "Applicant" entity.
*
*/
public class Applicant implements java.io.Serializable {
// Fields
private Integer id;
private String lastname;
private String firstname;
private String gender;
private Date birthday;
private String nationality;
private String address;
private String PC;
private String city;
private String country;
private String phone;
private String gsm;
private String email;
private String interest;
private String langCom;
private String source;
private Integer currentIncome;
private Integer desiredIncome;
private String net;
private String tempUnit;
private JobTitle jobTitle;
private Set keywords = new HashSet(0);
// Constructors
/** default constructor */
public Applicant() {
}
/** minimal constructor */
public Applicant(String lastname, String firstname, String gender, String nationality, String address, String PC, String city, String country, String phone, String gsm, String email, String interest, String langCom, String source, Integer currentIncome, Integer desiredIncome, String net, String tempUnit, JobTitle jobTitle) {
this.lastname = lastname;
this.firstname = firstname;
this.gender = gender;
this.nationality = nationality;
this.address = address;
this.PC = PC;
this.city = city;
this.country = country;
this.phone = phone;
this.gsm = gsm;
this.email = email;
this.interest = interest;
this.langCom = langCom;
this.source = source;
this.currentIncome = currentIncome;
this.desiredIncome = desiredIncome;
this.net = net;
this.tempUnit = tempUnit;
this.jobTitle = jobTitle;
}
/** full constructor */
public Applicant(String lastname, String firstname, String gender, Date birthday, String nationality, String address, String PC, String city, String country, String phone, String gsm, String email, String interest, String langCom, String source, Integer currentIncome, Integer desiredIncome, String net, String tempUnit, JobTitle jobTitle, Set keywords) {
this.lastname = lastname;
this.firstname = firstname;
this.gender = gender;
this.birthday = birthday;
this.nationality = nationality;
this.address = address;
this.PC = PC;
this.city = city;
this.country = country;
this.phone = phone;
this.gsm = gsm;
this.email = email;
this.interest = interest;
this.langCom = langCom;
this.source = source;
this.currentIncome = currentIncome;
this.desiredIncome = desiredIncome;
this.net = net;
this.tempUnit = tempUnit;
this.jobTitle = jobTitle;
this.keywords = keywords;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public String getLastname() {
return this.lastname;
}
public void setLastname(String lastname) {
this.lastname = lastname;
}
public String getFirstname() {
return this.firstname;
}
public void setFirstname(String firstname) {
this.firstname = firstname;
}
public String getGender() {
return this.gender;
}
public void setGender(String gender) {
this.gender = gender;
}
public Date getBirthday() {
return this.birthday;
}
public void setBirthday(Date birthday) {
this.birthday = birthday;
}
public String getNationality() {
return this.nationality;
}
public void setNationality(String nationality) {
this.nationality = nationality;
}
public String getAddress() {
return this.address;
}
public void setAddress(String address) {
this.address = address;
}
public String getPC() {
return this.PC;
}
public void setPC(String PC) {
this.PC = PC;
}
public String getCity() {
return this.city;
}
public void setCity(String city) {
this.city = city;
}
public String getCountry() {
return this.country;
}
public void setCountry(String country) {
this.country = country;
}
public String getPhone() {
return this.phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
public String getGsm() {
return this.gsm;
}
public void setGsm(String gsm) {
this.gsm = gsm;
}
public String getEmail() {
return this.email;
}
public void setEmail(String email) {
this.email = email;
}
public String getInterest() {
return this.interest;
}
public void setInterest(String interest) {
this.interest = interest;
}
public String getLangCom() {
return this.langCom;
}
public void setLangCom(String langCom) {
this.langCom = langCom;
}
public String getSource() {
return this.source;
}
public void setSource(String source) {
this.source = source;
}
public Integer getCurrentIncome() {
return this.currentIncome;
}
public void setCurrentIncome(Integer currentIncome) {
this.currentIncome = currentIncome;
}
public Integer getDesiredIncome() {
return this.desiredIncome;
}
public void setDesiredIncome(Integer desiredIncome) {
this.desiredIncome = desiredIncome;
}
public String getNet() {
return this.net;
}
public void setNet(String net) {
this.net = net;
}
public String getTempUnit() {
return this.tempUnit;
}
public void setTempUnit(String tempUnit) {
this.tempUnit = tempUnit;
}
public JobTitle getJobTitle() {
return this.jobTitle;
}
public void setJobTitle(JobTitle jobTitle) {
this.jobTitle = jobTitle;
}
public Set getKeywords() {
return this.keywords;
}
public void setKeywords(Set keywords) {
this.keywords = keywords;
}
} |