Package com.io7m.idstore.model
Record Class IdAdminCreate
java.lang.Object
java.lang.Record
com.io7m.idstore.model.IdAdminCreate
- Record Components:
id- The admin ID (if an explicit ID is desired)idName- The id namerealName- The real nameemail- The emailpassword- The passwordpermissions- The permissions
public record IdAdminCreate(Optional<UUID> id, IdName idName, IdRealName realName, IdEmail email, IdPassword password, IdAdminPermissionSet permissions)
extends Record
Information required to create a admin.
-
Constructor Summary
ConstructorsConstructorDescriptionIdAdminCreate(Optional<UUID> id, IdName idName, IdRealName realName, IdEmail email, IdPassword password, IdAdminPermissionSet permissions) Information required to create a admin. -
Method Summary
Modifier and TypeMethodDescriptionemail()Returns the value of theemailrecord 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.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
IdAdminCreate
public IdAdminCreate(Optional<UUID> id, IdName idName, IdRealName realName, IdEmail email, IdPassword password, IdAdminPermissionSet permissions) Information required to create a admin.- Parameters:
id- The admin ID (if an explicit ID is desired)idName- The id namerealName- The real nameemail- The emailpassword- The passwordpermissions- The permissions
-
-
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
-
email
-
password
-
permissions
Returns the value of thepermissionsrecord component.- Returns:
- the value of the
permissionsrecord component
-