Interface MutableSessionMetaDataValues
- All Known Subinterfaces:
MutableSessionMetaDataOffsetValues
public interface MutableSessionMetaDataValues
Encapsulates the mutable values of the session metadata.
- Author:
- Paul Ferraro
-
Method Summary
Modifier and TypeMethodDescriptionorg.wildfly.clustering.server.offset.Value<Instant> Returns the last access end time value.org.wildfly.clustering.server.offset.Value<Instant> Returns the last access start time value.org.wildfly.clustering.server.offset.Value<Duration> Returns the session timeout value.
-
Method Details
-
getTimeout
org.wildfly.clustering.server.offset.Value<Duration> getTimeout()Returns the session timeout value.- Returns:
- the session timeout value.
-
getLastAccessStartTime
org.wildfly.clustering.server.offset.Value<Instant> getLastAccessStartTime()Returns the last access start time value.- Returns:
- the last access start time value.
-
getLastAccessEndTime
org.wildfly.clustering.server.offset.Value<Instant> getLastAccessEndTime()Returns the last access end time value.- Returns:
- the last access end time value.
-