| java.lang.Object | |
| ↳ | org.springframework.security.web.session.HttpSessionEventPublisher |
Declared in web.xml as
<listener>
<listener-class>org.springframework.security.web.session.HttpSessionEventPublisher</listener-class>
</listener>
Publishes HttpSessionApplicationEvents to the Spring Root WebApplicationContext. Maps
javax.servlet.http.HttpSessionListener.sessionCreated() to HttpSessionCreatedEvent. Maps
javax.servlet.http.HttpSessionListener.sessionDestroyed() to HttpSessionDestroyedEvent.
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Handles the HttpSessionEvent by publishing a
HttpSessionCreatedEvent to the application
appContext. | |||||||||||
Handles the HttpSessionEvent by publishing a
HttpSessionDestroyedEvent to the application
appContext. | |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||
From interface
javax.servlet.http.HttpSessionListener
| |||||||||||
Handles the HttpSessionEvent by publishing a HttpSessionCreatedEvent to the application
appContext.
| event | HttpSessionEvent passed in by the container |
|---|
Handles the HttpSessionEvent by publishing a HttpSessionDestroyedEvent to the application
appContext.
| event | The HttpSessionEvent pass in by the container |
|---|