Package com.io7m.idstore.model
Record Class IdLogin
java.lang.Object
java.lang.Record
com.io7m.idstore.model.IdLogin
- Record Components:
userId- The user IDtime- The login timehost- The host from which the user logged inuserAgent- The user agent
public record IdLogin(UUID userId, OffsetDateTime time, String host, String userAgent)
extends Record
A record of a login.
-
Constructor Summary
ConstructorsConstructorDescriptionIdLogin(UUID userId, OffsetDateTime time, String host, String userAgent) A record of a login. -
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.host()Returns the value of thehostrecord component.time()Returns the value of thetimerecord component.final StringtoString()Returns a string representation of this record class.Returns the value of theuserAgentrecord component.userId()Returns the value of theuserIdrecord component.
-
Constructor Details
-
IdLogin
A record of a login.- Parameters:
userId- The user IDtime- The login timehost- The host from which the user logged inuserAgent- The user agent
-
-
Method Details
-
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. All components in this record class are compared withObjects::equals(Object,Object). -
userId
-
time
-
host
-
userAgent
-