From 0ab9385eeb7f913b2701af2bcef1a943a121d230 Mon Sep 17 00:00:00 2001 From: Rob Winch Date: Mon, 30 Jun 2014 16:41:58 -0500 Subject: [PATCH] Fix Javadoc to remove .security. from package names --- .../java/org/springframework/session/SessionRepository.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/springframework/session/SessionRepository.java b/src/main/java/org/springframework/session/SessionRepository.java index 5e97f23..fb7e78d 100644 --- a/src/main/java/org/springframework/session/SessionRepository.java +++ b/src/main/java/org/springframework/session/SessionRepository.java @@ -23,7 +23,7 @@ package org.springframework.session; */ public interface SessionRepository { /** - * Ensures the {@link Session} created by {@link org.springframework.security.session.SessionRepository#createSession()} is saved. + * Ensures the {@link Session} created by {@link org.springframework.session.SessionRepository#createSession()} is saved. * *

* Some implementations may choose to save as the {@link Session} is updated by returning a {@link Session} that @@ -36,14 +36,14 @@ public interface SessionRepository { /** * Gets the {@link Session} by the {@link Session#getId()} or null if no {@link Session} is found. - * @param id the {@link org.springframework.security.session.Session#getId()} to lookup + * @param id the {@link org.springframework.session.Session#getId()} to lookup * @return the {@link Session} by the {@link Session#getId()} or null if no {@link Session} is found. */ Session getSession(String id); /** * Deletes the {@link Session} with the given {@link Session#getId()} or does nothing if the {@link Session} is not found. - * @param id the {@link org.springframework.security.session.Session#getId()} to delete + * @param id the {@link org.springframework.session.Session#getId()} to delete */ void delete(String id);