1 package org.apache.commons.betwixt.scarab; 2 3 18 19 import java.io.Serializable ; 20 21 import org.apache.commons.logging.Log; 22 import org.apache.commons.logging.LogFactory; 23 24 30 public class CreatedDate implements Serializable 31 { 32 35 private final static Log log = LogFactory.getLog(CreatedDate.class); 36 37 private String format; 38 private String timestamp; 39 40 public void setFormat(String format) 41 { 42 this.format = format; 43 } 44 45 public String getFormat() 46 { 47 return this.format; 48 } 49 50 public void setTimestamp(String timestamp) 51 { 52 this.timestamp = timestamp; 53 } 54 55 public String getTimestamp() 56 { 57 return this.timestamp; 58 } 59 60 public String toString() 61 { 62 return "format=" + format + ";timestamp=" + timestamp; 63 } 64 } 65 | Popular Tags |