Add link/URL to the Spring Session core GitHub Issue #922 referencing the new feature request.

This commit is contained in:
John Blum
2018-01-12 14:30:11 -08:00
parent 96d03171e9
commit 9d9a5d0b1a
2 changed files with 10 additions and 4 deletions

View File

@@ -24,10 +24,13 @@ import org.springframework.session.Session;
import org.springframework.session.SessionRepository;
/**
* The FixedDurationExpirationSessionRepository class...
* The {@link FixedDurationExpirationSessionRepository} class...
*
* @author John Blum
* @since 1.0.0
* @see org.springframework.session.Session
* @see org.springframework.session.SessionRepository
* @see <a href="https://github.com/spring-projects/spring-session/issues/922">Absolute Session Timeouts</a>
* @since 2.0.0
*/
@SuppressWarnings("unused")
public class FixedDurationExpirationSessionRepository<S extends Session> implements SessionRepository<S> {

View File

@@ -24,10 +24,13 @@ import org.springframework.lang.Nullable;
import org.springframework.session.SessionRepository;
/**
* The FixedDurationExpirationSessionRepositoryBeanPostProcessor class...
* The {@link FixedDurationExpirationSessionRepositoryBeanPostProcessor} class...
*
* @author John Blum
* @since 1.0.0
* @see org.springframework.beans.factory.config.BeanPostProcessor
* @see org.springframework.session.SessionRepository
* @see <a href="https://github.com/spring-projects/spring-session/issues/922">Absolute Session Timeouts</a>
* @since 2.0.0
*/
@SuppressWarnings("unused")
public class FixedDurationExpirationSessionRepositoryBeanPostProcessor implements BeanPostProcessor {