1 16 package org.apache.catalina.cluster.session; 17 import org.apache.catalina.cluster.ClusterMessage; 18 19 40 41 public interface SessionMessage extends ClusterMessage, java.io.Serializable 42 { 43 44 47 public static final int EVT_SESSION_CREATED = 1; 48 51 public static final int EVT_SESSION_EXPIRED = 2; 52 53 58 public static final int EVT_SESSION_ACCESSED = 3; 59 64 public static final int EVT_GET_ALL_SESSIONS = 4; 65 69 public static final int EVT_SESSION_DELTA = 13; 70 71 74 public static final int EVT_ALL_SESSION_DATA = 12; 75 76 77 78 public String getContextName(); 79 80 public String getEventTypeString(); 81 82 86 public int getEventType(); 87 90 public byte[] getSession(); 91 94 public String getSessionID(); 95 96 97 98 } | Popular Tags |