Record Class IdEmailVerification
java.lang.Object
java.lang.Record
com.io7m.idstore.model.IdEmailVerification
- Record Components:
user- The useremail- The email addresstokenPermit- The verification token to permit the operationtokenDeny- The verification token to deny the operationoperation- The operationexpires- The expiration date
public record IdEmailVerification(UUID user, IdEmail email, IdToken tokenPermit, IdToken tokenDeny, IdEmailVerificationOperation operation, OffsetDateTime expires)
extends Record
An email verification operation.
-
Constructor Summary
ConstructorsConstructorDescriptionIdEmailVerification(UUID user, IdEmail email, IdToken tokenPermit, IdToken tokenDeny, 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.Returns the value of thetokenDenyrecord component.Returns the value of thetokenPermitrecord 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 tokenPermit, IdToken tokenDeny, IdEmailVerificationOperation operation, OffsetDateTime expires) An email verification operation.- Parameters:
user- The useremail- The email addresstokenPermit- The verification token to permit the operationtokenDeny- The verification token to deny the operationoperation- The operationexpires- The expiration date
-
-
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). -
user
-
email
-
tokenPermit
Returns the value of thetokenPermitrecord component.- Returns:
- the value of the
tokenPermitrecord component
-
tokenDeny
-
operation
-
expires
-