19 package org.turro.contacts;
21 import java.util.Date;
22 import javax.persistence.Column;
23 import javax.persistence.Entity;
24 import javax.persistence.GeneratedValue;
25 import javax.persistence.Id;
26 import javax.persistence.OneToOne;
27 import javax.persistence.Temporal;
34 @org.hibernate.annotations.GenericGenerator(name =
"hibernate-uuid", strategy =
"uuid")
35 public class JobBoard implements java.io.Serializable {
38 @GeneratedValue(generator =
"hibernate-uuid")
39 @Column(name=
"IDENTIFIER")
42 private String zipCode;
43 private int commuting;
44 private boolean available, online;
46 @Temporal(value = javax.persistence.TemporalType.TIMESTAMP)
47 private Date updateDate;
65 this.zipCode = zipCode;
73 this.commuting = commuting;
81 this.available = available;
97 this.updateDate = updateDate;
105 this.contact = contact;