Interface InvalidateHttpSessionOperation


public interface InvalidateHttpSessionOperation
Operation to obtain details of invalidating a HttpSession within the HttpSessionStore.
Author:
Daniel Sagenschneider
  • Method Details

    • getSessionId

      String getSessionId()
      Obtains the session Id of the HttpSession to invalidate.
      Returns:
      Session Id of the HttpSession to invalidate.
    • sessionInvalidated

      void sessionInvalidated()
      Flags the HttpSession was invalidated successfully within the HttpSessionStore.
    • failedToInvalidateSession

      void failedToInvalidateSession(Throwable cause)
      Flags failed to invalidate the HttpSession within the HttpSessionStore.
      Parameters:
      cause - Cause of the failure.