Package com.io7m.idstore.protocol.admin
Record Class IdACommandUserCreate
java.lang.Object
java.lang.Record
com.io7m.idstore.protocol.admin.IdACommandUserCreate
- Record Components:
id- The user IDidName- The id namerealName- The real nameemail- The primary emailpassword- The password
- All Implemented Interfaces:
com.io7m.hibiscus.api.HBMessageType,IdACommandType<IdAResponseUserCreate>,IdAMessageType,IdProtocolMessageType
public record IdACommandUserCreate(Optional<UUID> id, IdName idName, IdRealName realName, IdEmail email, IdPassword password)
extends Record
implements IdACommandType<IdAResponseUserCreate>
Create a user.
-
Constructor Summary
ConstructorsConstructorDescriptionIdACommandUserCreate(Optional<UUID> id, IdName idName, IdRealName realName, IdEmail email, IdPassword password) Create a user. -
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.realName()Returns the value of therealNamerecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
IdACommandUserCreate
public IdACommandUserCreate(Optional<UUID> id, IdName idName, IdRealName realName, IdEmail email, IdPassword password) Create a user.
-
-
Method Details
-
responseClass
- Specified by:
responseClassin interfaceIdACommandType<IdAResponseUserCreate>- Returns:
- The response type associated with this command
-
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
-
email
Returns the value of theemailrecord component.- Returns:
- the value of the
emailrecord component
-
password
Returns the value of thepasswordrecord component.- Returns:
- the value of the
passwordrecord component
-