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 max idle duration value
-
Method Details
-
getMaxIdle
org.wildfly.clustering.server.offset.Value<Duration> getMaxIdle()Returns the max idle duration value- Returns:
- the max idle duration 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.
-