1 17 18 19 20 package org.apache.lenya.cms.rc; 21 22 public class RCMLEntry { 23 24 private String identity = null; 25 private long time = 0; 26 private short type = 0; 27 28 34 public RCMLEntry(String identity, long time) { 35 this.identity = identity; 36 this.time = time; 37 } 38 39 44 public String getIdentity() { 45 return identity; 46 } 47 48 53 public long getTime() { 54 return time; 55 } 56 57 62 public short getType() { 63 return type; 64 } 65 66 71 protected void setType(short s) { 72 type = s; 73 } 74 75 } 76 | Popular Tags |