1 2 24 25 package com.lutris.appserver.server.sessionEnhydra; 26 27 import java.util.Enumeration ; 28 29 import com.lutris.appserver.server.session.SessionException; 30 import com.lutris.appserver.server.user.User; 31 32 47 public interface StandardSessionUserTable { 48 49 58 void add(String sessionKey, User user) throws SessionException; 59 60 68 void remove(String sessionKey, User user) throws SessionException; 69 70 75 void remove(String sessionKey) throws SessionException; 76 77 85 int numSessions(User user) throws SessionException; 86 87 95 Enumeration getSessionKeys(User user) throws SessionException; 96 97 101 public void shutdown(); 102 103 } 104 | Popular Tags |