Package org.localify.auth.dto.web
Record Class UserEmailTokenRequest
java.lang.Object
java.lang.Record
org.localify.auth.dto.web.UserEmailTokenRequest
- Record Components:
email- The user's email address.
Represents a request to send a login token to a user's email.
-
Constructor Summary
ConstructorsConstructorDescriptionUserEmailTokenRequest(@Email @NotNull String email) Creates an instance of aUserEmailTokenRequestrecord class. -
Method Summary
Modifier and TypeMethodDescription@Email @NotNull Stringemail()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.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
UserEmailTokenRequest
Creates an instance of aUserEmailTokenRequestrecord class.- Parameters:
email- the value for theemailrecord component
-
-
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). -
email
Returns the value of theemailrecord component.- Returns:
- the value of the
emailrecord component
-