From 10d787ede2b5926f27f8b8fe2f60cc1cab740cd7 Mon Sep 17 00:00:00 2001 From: Luke Taylor Date: Wed, 3 Feb 2010 23:49:36 +0000 Subject: [PATCH] Javadoc corrections to SessionRegistryImpl --- .../security/core/session/SessionRegistryImpl.java | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/core/src/main/java/org/springframework/security/core/session/SessionRegistryImpl.java b/core/src/main/java/org/springframework/security/core/session/SessionRegistryImpl.java index 2180a37e52..8d0e3307ec 100644 --- a/core/src/main/java/org/springframework/security/core/session/SessionRegistryImpl.java +++ b/core/src/main/java/org/springframework/security/core/session/SessionRegistryImpl.java @@ -31,12 +31,13 @@ import org.springframework.context.ApplicationListener; import org.springframework.util.Assert; /** - * Base implementation of {@link org.springframework.security.core.session.SessionRegistry} - * which also listens for {@link org.springframework.security.web.session.HttpSessionDestroyedEvent}s + * Default implementation of {@link org.springframework.security.core.session.SessionRegistry SessionRegistry} + * which listens for {@link org.springframework.security.core.session.SessionDestroyedEvent SessionDestroyedEvent}s * published in the Spring application context. *

- * NB: It is important that you register the {@link org.springframework.security.web.session.HttpSessionEventPublisher} - * in web.xml so that this class is notified of sessions that expire. + * For this class to function correctly in a web application, it is important that you register an + * {@link org.springframework.security.web.session.HttpSessionEventPublisher HttpSessionEventPublisher} + * in the web.xml file so that this class is notified of sessions that expire. * * @author Ben Alex * @author Luke Taylor