Package com.io7m.idstore.model
Record Class IdUserCreate
java.lang.Object
java.lang.Record
com.io7m.idstore.model.IdUserCreate
- Record Components:
id- The user ID (if an explicit ID is desired)idName- The id namerealName- The real nameemail- The emailpassword- The password
public record IdUserCreate(Optional<UUID> id, IdName idName, IdRealName realName, IdEmail email, IdPassword password)
extends Record
Information required to create a user.
-
Constructor Summary
ConstructorsConstructorDescriptionIdUserCreate(Optional<UUID> id, IdName idName, IdRealName realName, IdEmail email, IdPassword password) Information required to 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
-
IdUserCreate
public IdUserCreate(Optional<UUID> id, IdName idName, IdRealName realName, IdEmail email, IdPassword password) Information required to create a user.- Parameters:
id- The user ID (if an explicit ID is desired)idName- The id namerealName- The real nameemail- The emailpassword- The password
-
-
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
-