1 7 8 package org.jboss.ha.httpsession.beanimpl.ejb; 9 10 import java.io.Serializable ; 11 12 28 29 public class ClusteredHTTPSessionBeanCmp11 extends ClusteredHTTPSessionBeanImpl 30 { 31 32 34 36 public String id; 37 public Serializable serializedSession; 38 public long lastAccessTime; 39 public long creationTime; 40 41 43 45 public ClusteredHTTPSessionBeanCmp11 () 46 { 47 } 48 49 51 53 55 public String getSessionId () 56 { return this.id; } 57 58 public void setSessionId (String sessionId) 59 { this.id = sessionId; } 60 61 public Serializable getSerializedSession () 62 { return this.serializedSession; } 63 64 public void setSerializedSession (Serializable session) 65 { this.serializedSession = session; } 66 67 public long getLastAccessedTime () 68 { return this.lastAccessTime; } 69 70 public void setLastAccessedTime (long value) 71 { this.lastAccessTime = value; } 72 73 public long getCreationTime () 74 { return this.creationTime; } 75 76 public void setCreationTime (long value) 77 { this.creationTime = value; } 78 79 81 83 85 87 } 88 | Popular Tags |