Class SessionInformationExpiredEvent
- java.lang.Object
-
- java.util.EventObject
-
- org.springframework.context.ApplicationEvent
-
- org.springframework.security.web.session.SessionInformationExpiredEvent
-
- All Implemented Interfaces:
java.io.Serializable
public final class SessionInformationExpiredEvent extends org.springframework.context.ApplicationEvent
An event for when aSessionInformation
is expired.- Since:
- 4.2
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SessionInformationExpiredEvent(SessionInformation sessionInformation, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
Creates a new instance
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description javax.servlet.http.HttpServletRequest
getRequest()
javax.servlet.http.HttpServletResponse
getResponse()
SessionInformation
getSessionInformation()
-
-
-
Constructor Detail
-
SessionInformationExpiredEvent
public SessionInformationExpiredEvent(SessionInformation sessionInformation, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
Creates a new instance- Parameters:
sessionInformation
- the SessionInformation that is expiredrequest
- the HttpServletRequestresponse
- the HttpServletResponse
-
-
Method Detail
-
getRequest
public javax.servlet.http.HttpServletRequest getRequest()
- Returns:
- the request
-
getResponse
public javax.servlet.http.HttpServletResponse getResponse()
- Returns:
- the response
-
getSessionInformation
public SessionInformation getSessionInformation()
-
-