1 package test.hibernate; 2 3 import java.util.Date ; 4 5 8 public abstract class Persistent { 9 10 private Long id; 11 private int version; 12 private Date created; 13 14 17 public Persistent() { 18 super(); 19 } 20 21 33 public Long getId() { 34 return id; 35 } 36 37 41 public void setId(Long id) { 42 this.id = id; 43 } 44 45 49 public int getVersion() { 50 return version; 51 } 52 53 57 public void setVersion(int version) { 58 this.version = version; 59 } 60 61 69 public Date getCreated() { 70 return created; 71 } 72 73 77 public void setCreated(Date created) { 78 this.created = created; 79 } 80 81 } 82 | Popular Tags |