Package com.io7m.idstore.model
Record Class IdEmailVerification
java.lang.Object
java.lang.Record
com.io7m.idstore.model.IdEmailVerification
- Record Components:
email- The email addressoperation- The operationtoken- The verification tokenexpires- The expiration dateuser- The user
public record IdEmailVerification(UUID user, IdEmail email, IdToken token, IdEmailVerificationOperation operation, OffsetDateTime expires)
extends Record
An email verification operation.
-
Constructor Summary
ConstructorsConstructorDescriptionIdEmailVerification(UUID user, IdEmail email, IdToken token, IdEmailVerificationOperation operation, OffsetDateTime expires) An email verification operation. -
Method Summary
Modifier and TypeMethodDescriptionemail()Returns the value of theemailrecord component.final booleanIndicates whether some other object is "equal to" this one.expires()Returns the value of theexpiresrecord component.final inthashCode()Returns a hash code value for this object.Returns the value of theoperationrecord component.token()Returns the value of thetokenrecord component.final StringtoString()Returns a string representation of this record class.user()Returns the value of theuserrecord component.
-
Constructor Details
-
IdEmailVerification
public IdEmailVerification(UUID user, IdEmail email, IdToken token, IdEmailVerificationOperation operation, OffsetDateTime expires) An email verification operation.- Parameters:
email- The email addressoperation- The operationtoken- The verification tokenexpires- The expiration dateuser- The user
-
-
Method Details
-
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). -
user
Returns the value of theuserrecord component.- Returns:
- the value of the
userrecord component
-
email
Returns the value of theemailrecord component.- Returns:
- the value of the
emailrecord component
-
token
Returns the value of thetokenrecord component.- Returns:
- the value of the
tokenrecord component
-
operation
Returns the value of theoperationrecord component.- Returns:
- the value of the
operationrecord component
-
expires
Returns the value of theexpiresrecord component.- Returns:
- the value of the
expiresrecord component
-