1 package org.hibernate.test.mixed; 3 4 import java.sql.Blob ; 5 import java.util.Calendar ; 6 7 10 public class Document extends Item { 11 private Blob content; 12 private Calendar modified; 13 private Calendar created; 14 17 public Calendar getCreated() { 18 return created; 19 } 20 23 public void setCreated(Calendar created) { 24 this.created = created; 25 } 26 29 public Calendar getModified() { 30 return modified; 31 } 32 35 public void setModified(Calendar modified) { 36 this.modified = modified; 37 } 38 41 public Blob getContent() { 42 return content; 43 } 44 47 public void setContent(Blob content) { 48 this.content = content; 49 } 50 } 51 | Popular Tags |