Package com.io7m.idstore.model
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
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
-
tokenPermit
Returns the value of thetokenPermitrecord component.- Returns:
- the value of the
tokenPermitrecord component
-
tokenDeny
Returns the value of thetokenDenyrecord component.- Returns:
- the value of the
tokenDenyrecord 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
-