Record Class SessionOptions
java.lang.Object
java.lang.Record
io.leandev.appfuse.security.auth.SessionOptions
-
Constructor Summary
ConstructorsConstructorDescriptionSessionOptions(boolean remembered, Duration idleTimeout) Creates an instance of aSessionOptionsrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of theidleTimeoutrecord component.static SessionOptionsnonRemembered(Duration idleTimeout) booleanReturns the value of therememberedrecord component.static SessionOptionsremembered(Duration idleTimeout) final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
SessionOptions
Creates an instance of aSessionOptionsrecord class.- Parameters:
remembered- the value for therememberedrecord componentidleTimeout- the value for theidleTimeoutrecord component
-
-
Method Details
-
nonRemembered
-
remembered
-
toString
-
hashCode
-
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with thecomparemethod from their corresponding wrapper classes. -
remembered
public boolean remembered()Returns the value of therememberedrecord component.- Returns:
- the value of the
rememberedrecord component
-
idleTimeout
Returns the value of theidleTimeoutrecord component.- Returns:
- the value of the
idleTimeoutrecord component
-