Interface | Description |
---|---|
IsDirtyPredicate |
IsDirtyPredicate is a strategy interface used to configure Spring Session on how to evaluate application
domain objects to determine whether they are dirty or not. |
Class | Description |
---|---|
AbstractSession |
Abstract base class for implementations of the
Session interface in order to simplify the implementation
of various Session types and their capabilities. |
DeltaAwareDirtyPredicate |
DeltaAwareDirtyPredicate is an IsDirtyPredicate strategy interface implementation that evaluates
the new value as instance of Delta and uses the Delta.hasDelta() method
to determine if the new value is dirty. |
EqualsDirtyPredicate |
EqualsDirtyPredicate is an IsDirtyPredicate strategy interface implementation that determines
whether the new value is dirty by comparing the new value
with the old value using the Object.equals(Object) method. |
GemFireOperationsSessionRepositorySupport |
Framework supporting class for
AbstractGemFireOperationsSessionRepository implementations. |
GemFireUtils |
GemFireUtils is an abstract, extensible utility class for working with Apache Geode and Pivotal GemFire
objects and types. |
IdentityEqualsDirtyPredicate |
IdentityEqualsDirtyPredicate is an IsDirtyPredicate strategy interface implementation
that determines whether the new value is dirty by comparing the new value
with the old value using the identity operator (==). |
SessionIdHolder |
SessionIdHolder class is a Spring Session Session implementation that only holds
the ID of the Session . |
SessionUtils |
Abstract utility class containing functions for managing
Session objects. |