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