Record Class IdUser
java.lang.Object
java.lang.Record
com.io7m.idstore.model.IdUser
- Record Components:
id- The user's IDidName- The user's ID namerealName- The user's real nameemails- The user's emailstimeCreated- The time the user was createdtimeUpdated- The time the user was updatedpassword- The user's password
public record IdUser(UUID id, IdName idName, IdRealName realName, IdNonEmptyList<IdEmail> emails, OffsetDateTime timeCreated, OffsetDateTime timeUpdated, IdPassword password)
extends Record
Information for a single user.
-
Constructor Summary
ConstructorsConstructorDescriptionIdUser(UUID id, IdName idName, IdRealName realName, IdNonEmptyList<IdEmail> emails, OffsetDateTime timeCreated, OffsetDateTime timeUpdated, IdPassword password) Information for a single user. -
Method Summary
Modifier and TypeMethodDescriptionemails()Returns the value of theemailsrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.id()Returns the value of theidrecord component.idName()Returns the value of theidNamerecord component.password()Returns the value of thepasswordrecord component.realName()Returns the value of therealNamerecord component.summary()Summarize this user.Returns the value of thetimeCreatedrecord component.Returns the value of thetimeUpdatedrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
IdUser
public IdUser(UUID id, IdName idName, IdRealName realName, IdNonEmptyList<IdEmail> emails, OffsetDateTime timeCreated, OffsetDateTime timeUpdated, IdPassword password) Information for a single user.- Parameters:
id- The user's IDidName- The user's ID namerealName- The user's real nameemails- The user's emailstimeCreated- The time the user was createdtimeUpdated- The time the user was updatedpassword- The user's password
-
-
Method Details
-
summary
-
withRedactedPassword
- Returns:
- This user with a redacted password hash
-
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). -
id
-
idName
-
realName
-
emails
-
timeCreated
Returns the value of thetimeCreatedrecord component.- Returns:
- the value of the
timeCreatedrecord component
-
timeUpdated
Returns the value of thetimeUpdatedrecord component.- Returns:
- the value of the
timeUpdatedrecord component
-
password
-