Package net.officefloor.web.session.spi
Interface InvalidateHttpSessionOperation
-
public interface InvalidateHttpSessionOperation
Operation to obtain details of invalidating aHttpSession
within theHttpSessionStore
.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
failedToInvalidateSession(java.lang.Throwable cause)
Flags failed to invalidate theHttpSession
within theHttpSessionStore
.java.lang.String
getSessionId()
Obtains the session Id of theHttpSession
to invalidate.void
sessionInvalidated()
Flags theHttpSession
was invalidated successfully within theHttpSessionStore
.
-
-
-
Method Detail
-
getSessionId
java.lang.String getSessionId()
Obtains the session Id of theHttpSession
to invalidate.- Returns:
- Session Id of the
HttpSession
to invalidate.
-
sessionInvalidated
void sessionInvalidated()
Flags theHttpSession
was invalidated successfully within theHttpSessionStore
.
-
failedToInvalidateSession
void failedToInvalidateSession(java.lang.Throwable cause)
Flags failed to invalidate theHttpSession
within theHttpSessionStore
.- Parameters:
cause
- Cause of the failure.
-
-