diff --git a/spring-session/build.gradle b/spring-session/build.gradle index abdc990..8587b73 100644 --- a/spring-session/build.gradle +++ b/spring-session/build.gradle @@ -63,7 +63,6 @@ ext.javadocLinks = [ "http://tiles.apache.org/framework/apidocs/", "http://aopalliance.sourceforge.net/doc/", "http://www.eclipse.org/aspectj/doc/released/aspectj5rt-api/", - "http://ehcache.org/apidocs/", "http://quartz-scheduler.org/api/2.2.0/", "http://fasterxml.github.com/jackson-core/javadoc/2.3.0/", "http://fasterxml.github.com/jackson-databind/javadoc/2.3.0/", diff --git a/spring-session/src/main/java/org/springframework/session/data/redis/RedisOperationsSessionRepository.java b/spring-session/src/main/java/org/springframework/session/data/redis/RedisOperationsSessionRepository.java index c2ee9fe..2e6175c 100644 --- a/spring-session/src/main/java/org/springframework/session/data/redis/RedisOperationsSessionRepository.java +++ b/spring-session/src/main/java/org/springframework/session/data/redis/RedisOperationsSessionRepository.java @@ -552,7 +552,7 @@ public class RedisOperationsSessionRepository implements FindByPrincipalNameSess /** * Gets the prefix for the channel that SessionCreatedEvent are published to. The suffix is the session id of the session that was created. * - * @return + * @return the prefix for the channel that SessionCreatedEvent are published to */ public String getSessionCreatedChannelPrefix() { return this.keyPrefix + "event:created:"; diff --git a/spring-session/src/main/java/org/springframework/session/data/redis/config/annotation/web/http/EnableRedisHttpSession.java b/spring-session/src/main/java/org/springframework/session/data/redis/config/annotation/web/http/EnableRedisHttpSession.java index c13dbe9..72e3548 100644 --- a/spring-session/src/main/java/org/springframework/session/data/redis/config/annotation/web/http/EnableRedisHttpSession.java +++ b/spring-session/src/main/java/org/springframework/session/data/redis/config/annotation/web/http/EnableRedisHttpSession.java @@ -73,7 +73,7 @@ public @interface EnableRedisHttpSession { * same Redis instance. *
* - * @return + * @return the unique namespace for keys */ String redisNamespace() default ""; } \ No newline at end of file diff --git a/spring-session/src/main/java/org/springframework/session/events/AbstractSessionEvent.java b/spring-session/src/main/java/org/springframework/session/events/AbstractSessionEvent.java index 0fa4286..3c78d3b 100644 --- a/spring-session/src/main/java/org/springframework/session/events/AbstractSessionEvent.java +++ b/spring-session/src/main/java/org/springframework/session/events/AbstractSessionEvent.java @@ -49,6 +49,7 @@ public abstract class AbstractSessionEvent extends ApplicationEvent { * {@link SessionRepository} implementations it may not be possible to get * the original session in which case this may be null. * + * @paramProvides HttpServletRequest and HttpServletResponse arguments instead of the * default ServletRequest and ServletResponse ones. + * + * @param request the request + * @param response the response + * @param filterChain the FilterChain + * @throws ServletException thrown when a non-I/O exception has occurred + * @throws IOException thrown when an I/O exception of some sort has occurred * @see Filter#doFilter */ protected abstract void doFilterInternal(