Record Class IdUserSummary
java.lang.Object
java.lang.Record
com.io7m.idstore.model.IdUserSummary
- Record Components:
id- The user IDidName- The user's ID namerealName- The user's real nametimeCreated- The time the user was createdtimeUpdated- The time the user was updated
public record IdUserSummary(UUID id, IdName idName, IdRealName realName, OffsetDateTime timeCreated, OffsetDateTime timeUpdated)
extends Record
A summary of a user.
-
Constructor Summary
ConstructorsConstructorDescriptionIdUserSummary(UUID id, IdName idName, IdRealName realName, OffsetDateTime timeCreated, OffsetDateTime timeUpdated) A summary of a user. -
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.id()Returns the value of theidrecord component.idName()Returns the value of theidNamerecord component.realName()Returns the value of therealNamerecord component.Returns the value of thetimeCreatedrecord component.Returns the value of thetimeUpdatedrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
IdUserSummary
public IdUserSummary(UUID id, IdName idName, IdRealName realName, OffsetDateTime timeCreated, OffsetDateTime timeUpdated) A summary of a user.- Parameters:
id- The user IDidName- The user's ID namerealName- The user nametimeCreated- The time the user was createdtimeUpdated- The time the user was updated
-
-
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). -
id
-
idName
-
realName
-
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
-