/* * Event1.java * * Created on 03 October 2006, 09:14 * * To change this template, choose Tools | Template Manager * and open the template in the editor. */ package uk.ac.lancs.illos.ejb.play; import java.io.Serializable; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; /** * * @author hearnc */ @Entity public class Event1 implements Serializable { @Id @GeneratedValue(strategy = GenerationType.AUTO) private Long id; /** Creates a new instance of Event1 */ public Event1() { } public Long getId() { return id; } public void setId(Long id) { this.id = id; } public int hashCode() { int hash = 0; hash += (this.id != null ? this.id.hashCode() : 0); return hash; } public boolean equals(Object object) { // TODO: Warning - this method won't work in the case the id fields are not set if (!(object instanceof Event1)) { return false; } Event1 other = (Event1)object; if (this.id != other.id && (this.id == null || !this.id.equals(other.id))) return false; return true; } public String toString() { return "uk.ac.lancs.illos.ejb.entity.user.Event1[id=" + id + "]"; } }