Package com.io7m.idstore.protocol.admin
Record Class IdACommandAdminCreate
java.lang.Object
java.lang.Record
com.io7m.idstore.protocol.admin.IdACommandAdminCreate
- Record Components:
id- The admin IDidName- The id namerealName- The real nameemail- The primary emailpassword- The passwordpermissions- The set of permissions
- All Implemented Interfaces:
com.io7m.hibiscus.api.HBCommandType,com.io7m.hibiscus.api.HBMessageType,IdACommandType<IdAResponseAdminCreate>,IdAMessageType,IdProtocolMessageType
public record IdACommandAdminCreate(Optional<UUID> id, IdName idName, IdRealName realName, IdEmail email, IdPassword password, Set<IdAdminPermission> permissions)
extends Record
implements IdACommandType<IdAResponseAdminCreate>
Create an admin.
-
Constructor Summary
ConstructorsConstructorDescriptionIdACommandAdminCreate(Optional<UUID> id, IdName idName, IdRealName realName, IdEmail email, IdPassword password, Set<IdAdminPermission> permissions) Create an 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
-
IdACommandAdminCreate
public IdACommandAdminCreate(Optional<UUID> id, IdName idName, IdRealName realName, IdEmail email, IdPassword password, Set<IdAdminPermission> permissions) Create an admin.
-
-
Method Details
-
responseClass
- Specified by:
responseClassin interfaceIdACommandType<IdAResponseAdminCreate>- Returns:
- The response type associated with this command
-
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
-