Record Class FindPasswordCheckRequest
java.lang.Object
java.lang.Record
inha.git.auth.api.controller.dto.request.FindPasswordCheckRequest
-
Constructor Summary
ConstructorsConstructorDescriptionFindPasswordCheckRequest
(@Email @NotEmpty(message="\uc774\uba54\uc77c\uc744 \uc785\ub825\ud574 \uc8fc\uc138\uc694") String email, @NotEmpty @Size(min=6,max=6) String number) Creates an instance of aFindPasswordCheckRequest
record class. -
Method Summary
Modifier and TypeMethodDescription@Email @NotEmpty(message="\uc774\uba54\uc77c\uc744 \uc785\ub825\ud574 \uc8fc\uc138\uc694") String
email()
Returns the value of theemail
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.@NotEmpty @Size(min=6,max=6) String
number()
Returns the value of thenumber
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
FindPasswordCheckRequest
public FindPasswordCheckRequest(@Email @NotEmpty(message="\uc774\uba54\uc77c\uc744 \uc785\ub825\ud574 \uc8fc\uc138\uc694") @Email @NotEmpty(message="\uc774\uba54\uc77c\uc744 \uc785\ub825\ud574 \uc8fc\uc138\uc694") String email, @NotEmpty @Size(min=6,max=6) @NotEmpty @Size(min=6,max=6) String number) Creates an instance of aFindPasswordCheckRequest
record class.- Parameters:
email
- the value for theemail
record componentnumber
- the value for thenumber
record 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
@Email @NotEmpty(message="\uc774\uba54\uc77c\uc744 \uc785\ub825\ud574 \uc8fc\uc138\uc694") public @Email @NotEmpty(message="\uc774\uba54\uc77c\uc744 \uc785\ub825\ud574 \uc8fc\uc138\uc694") String email()Returns the value of theemail
record component.- Returns:
- the value of the
email
record component
-
number
Returns the value of thenumber
record component.- Returns:
- the value of the
number
record component
-