Edit Javadoc of AbstractSession.

This commit is contained in:
John Blum
2020-11-17 19:01:56 -08:00
parent 93fff96242
commit b04fa06412

View File

@@ -13,7 +13,6 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package org.springframework.session.data.gemfire.support; package org.springframework.session.data.gemfire.support;
import java.time.Duration; import java.time.Duration;
@@ -23,11 +22,13 @@ import java.util.Set;
import org.springframework.session.Session; import org.springframework.session.Session;
/** /**
* The {@link AbstractSession} abstract class is a base implementation of the {@link Session} interface * Abstract base class for implementations of the {@link Session} interface in order to simplify the implementation
* to simplify the implementation of various {@link Session} types and their capabilities. * of various {@link Session} types and their capabilities.
* *
* @author John Blum * @author John Blum
* @see org.springframework.session.data.gemfire.support.AbstractSession * @see java.time.Duration
* @see java.time.Instant
* @see org.springframework.session.Session
* @since 2.0.0 * @since 2.0.0
*/ */
public class AbstractSession implements Session { public class AbstractSession implements Session {