Class DefaultHttpSessionStore
- java.lang.Object
-
- org.apache.cxf.transport.http.netty.server.session.DefaultHttpSessionStore
-
- All Implemented Interfaces:
HttpSessionStore
public class DefaultHttpSessionStore extends Object implements HttpSessionStore
-
-
Constructor Summary
Constructors Constructor Description DefaultHttpSessionStore()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description NettyHttpSessioncreateSession()voiddestroyInactiveSessions()voiddestroySession(String sessionId)NettyHttpSessionfindSession(String sessionId)protected StringgenerateNewSessionId()
-
-
-
Method Detail
-
createSession
public NettyHttpSession createSession()
- Specified by:
createSessionin interfaceHttpSessionStore
-
destroySession
public void destroySession(String sessionId)
- Specified by:
destroySessionin interfaceHttpSessionStore
-
findSession
public NettyHttpSession findSession(String sessionId)
- Specified by:
findSessionin interfaceHttpSessionStore
-
generateNewSessionId
protected String generateNewSessionId()
-
destroyInactiveSessions
public void destroyInactiveSessions()
- Specified by:
destroyInactiveSessionsin interfaceHttpSessionStore
-
-