Interface SessionManager
-
- All Superinterfaces:
Component
- All Known Implementing Classes:
DefaultSessionManager
public interface SessionManager extends Component
The session manager initializes and destroys the session handler and session cache.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetGroupName()SessionConfiggetSessionConfig()SessionDataStoregetSessionDataStore()SessionHandlergetSessionHandler()SessionAgentnewSessionAgent()voidsetGroupName(java.lang.String groupName)voidsetSessionConfig(SessionConfig sessionConfig)voidsetSessionDataStore(SessionDataStore sessionDataStore)-
Methods inherited from interface com.aspectran.core.component.Component
destroy, getComponentName, initialize, isAvailable, isDestroyed, isInitialized
-
-
-
-
Method Detail
-
getGroupName
java.lang.String getGroupName()
-
setGroupName
void setGroupName(java.lang.String groupName)
-
getSessionConfig
SessionConfig getSessionConfig()
-
setSessionConfig
void setSessionConfig(SessionConfig sessionConfig)
-
getSessionDataStore
SessionDataStore getSessionDataStore()
-
setSessionDataStore
void setSessionDataStore(SessionDataStore sessionDataStore)
-
getSessionHandler
SessionHandler getSessionHandler()
-
newSessionAgent
SessionAgent newSessionAgent()
-
-