Record Class LoginResponseDTO
java.lang.Object
java.lang.Record
com.raphaelsalles.backend.api.dto.auth.LoginResponseDTO
- Record Components:
token- Token JWT para acesso a endpoints protegidos.name- Nome do usuário autenticado.role- Papel do usuário (ex: ADMIN, USER).
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionLoginResponseDTO(String token, String name, UserRole role) Creates an instance of aLoginResponseDTOrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.name()Returns the value of thenamerecord component.role()Returns the value of therolerecord component.token()Returns the value of thetokenrecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
token
-
name
-
role
-
-
Constructor Details
-
LoginResponseDTO
-
-
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). -
token
-
name
-
role
-