Record Class EmailCheckRequest

java.lang.Object
java.lang.Record
inha.git.auth.api.controller.dto.request.EmailCheckRequest

public record EmailCheckRequest(@Email @NotEmpty(message="\uc774\uba54\uc77c\uc744 \uc785\ub825\ud574 \uc8fc\uc138\uc694") String email, @NotNull Integer type, @NotEmpty @Size(min=6,max=6) String number) extends Record
  • Constructor Summary

    Constructors
    Constructor
    Description
    EmailCheckRequest(@Email @NotEmpty(message="\uc774\uba54\uc77c\uc744 \uc785\ub825\ud574 \uc8fc\uc138\uc694") String email, @NotNull Integer type, @NotEmpty @Size(min=6,max=6) String number)
    Creates an instance of a EmailCheckRequest record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    @Email @NotEmpty(message="\uc774\uba54\uc77c\uc744 \uc785\ub825\ud574 \uc8fc\uc138\uc694") String
    Returns the value of the email record component.
    final boolean
    Indicates whether some other object is "equal to" this one.
    final int
    Returns a hash code value for this object.
    @NotEmpty @Size(min=6,max=6) String
    Returns the value of the number record component.
    final String
    Returns a string representation of this record class.
    @NotNull Integer
    Returns the value of the type record component.

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • EmailCheckRequest

      public EmailCheckRequest(@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, @NotNull @NotNull Integer type, @NotEmpty @Size(min=6,max=6) @NotEmpty @Size(min=6,max=6) String number)
      Creates an instance of a EmailCheckRequest record class.
      Parameters:
      email - the value for the email record component
      type - the value for the type record component
      number - the value for the number record component
  • Method Details

    • toString

      public final String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      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 with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • 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 the email record component.
      Returns:
      the value of the email record component
    • type

      @NotNull public @NotNull Integer type()
      Returns the value of the type record component.
      Returns:
      the value of the type record component
    • number

      @NotEmpty @Size(min=6, max=6) public @NotEmpty @Size(min=6,max=6) String number()
      Returns the value of the number record component.
      Returns:
      the value of the number record component