1 2 26 27 28 package com.lutris.appserver.server.session; 29 30 import javax.servlet.http.HttpSession ; 31 32 import com.lutris.appserver.server.user.User; 33 34 40 public interface Session extends java.io.Serializable 41 { 42 43 49 public User getUser(); 50 51 68 public void setUser(User user) throws SessionException; 69 70 76 public void clearUser() throws SessionException; 77 78 83 public String getSessionKey(); 84 85 90 public SessionManager getSessionManager(); 91 92 98 public SessionData getSessionData(); 99 100 108 public boolean isNew(); 109 110 111 115 116 public HttpSession getHttpSession(); 117 118 } 119 120 121 122 | Popular Tags |