Fix Javadoc.

This commit is contained in:
John Blum
2018-10-24 19:56:42 -07:00
parent d237dcc02a
commit 83e4b40585
2 changed files with 4 additions and 4 deletions

View File

@@ -196,10 +196,10 @@ public @interface EnableGemFireHttpSession {
String sessionExpirationPolicyBeanName() default GemFireHttpSessionConfiguration.DEFAULT_SESSION_EXPIRATION_POLICY_BEAN_NAME;
/**
* Defines the bean name of the {@link SessionSerializer} used to serialize {@link Session} state
* Defines the name of the bean referring to the {@link SessionSerializer} used to serialize {@link Session} state
* between client and server or to disk when persisting or overflowing {@link Session} state.
*
* The {@link Object bean referred to by its {@link String name} must be of type {@link SessionSerializer}.
* The {@link Object bean} referred to by its {@link String name} must be of type {@link SessionSerializer}.
*
* Defaults to {@literal SessionPdxSerializer}.
*

View File

@@ -108,10 +108,10 @@ public class SessionExpirationPolicyCustomExpiryAdapter implements CustomExpiry<
/**
* Constructs a new {@link ExpirationAttributes} initialized with the given {@link Duration expiration timeout}
* and {@link SessionExpirationPolicy.ExpirationAction} to take when the {@link Session} expires.
* and action taken when the {@link Session} expires.
*
* @param expirationTimeout {@link Duration} specifying the expiration timeout.
* @param expirationAction {@link SessionExpirationPolicy.ExpirationAction} taken when the {@link Session} expires.
* @param expirationAction action taken when the {@link Session} expires.
* @return the new {@link ExpirationAttributes}.
* @see #newExpirationAttributes(int, ExpirationAction)
* @see org.springframework.session.data.gemfire.expiration.SessionExpirationPolicy.ExpirationAction