Package com.io7m.idstore.model
Record Class IdAdmin
java.lang.Object
java.lang.Record
com.io7m.idstore.model.IdAdmin
- Record Components:
id- The admin's IDidName- The admin's id namerealName- The admin's real nameemails- The admin's emailstimeCreated- The date the admin was createdtimeUpdated- The date the admin was last updatedpassword- The admin's passwordpermissions- The set of permissions belonging to the admin
public record IdAdmin(UUID id, IdName idName, IdRealName realName, IdNonEmptyList<IdEmail> emails, OffsetDateTime timeCreated, OffsetDateTime timeUpdated, IdPassword password, IdAdminPermissionSet permissions)
extends Record
Information for a single administrator.
-
Constructor Summary
ConstructorsConstructorDescriptionIdAdmin(UUID id, IdName idName, IdRealName realName, IdNonEmptyList<IdEmail> emails, OffsetDateTime timeCreated, OffsetDateTime timeUpdated, IdPassword password, IdAdminPermissionSet permissions) Information for a single administrator. -
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.Returns the value of thepermissionsrecord 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
-
IdAdmin
public IdAdmin(UUID id, IdName idName, IdRealName realName, IdNonEmptyList<IdEmail> emails, OffsetDateTime timeCreated, OffsetDateTime timeUpdated, IdPassword password, IdAdminPermissionSet permissions) Information for a single administrator.- Parameters:
id- The admin's IDidName- The admin's id namerealName- The admin's real nameemails- The admin's emailstimeCreated- The date the admin was createdtimeUpdated- The date the admin was last updatedpassword- The admin's passwordpermissions- The set of permissions belonging to the admin
-
-
Method Details
-
withRedactedPassword
- Returns:
- This admin with a redacted password hash
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
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
Returns the value of theidrecord component.- Returns:
- the value of the
idrecord component
-
idName
Returns the value of theidNamerecord component.- Returns:
- the value of the
idNamerecord component
-
realName
Returns the value of therealNamerecord component.- Returns:
- the value of the
realNamerecord component
-
emails
Returns the value of theemailsrecord component.- Returns:
- the value of the
emailsrecord component
-
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
Returns the value of thepasswordrecord component.- Returns:
- the value of the
passwordrecord component
-
permissions
Returns the value of thepermissionsrecord component.- Returns:
- the value of the
permissionsrecord component
-