Uses of Record Class
com.fiap.tech_challenge.parte1.ms_users.dtos.ChangePasswordRequestDTO
Packages that use ChangePasswordRequestDTO
Package
Description
-
Uses of ChangePasswordRequestDTO in com.fiap.tech_challenge.parte1.ms_users.controllers
Methods in com.fiap.tech_challenge.parte1.ms_users.controllers with parameters of type ChangePasswordRequestDTOModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<String>
UsersController.changePassword
(UUID id, @Valid ChangePasswordRequestDTO dto) Changes the password of a user. -
Uses of ChangePasswordRequestDTO in com.fiap.tech_challenge.parte1.ms_users.services
Methods in com.fiap.tech_challenge.parte1.ms_users.services with parameters of type ChangePasswordRequestDTOModifier and TypeMethodDescriptionvoid
UsersService.changePassword
(UUID id, @Valid ChangePasswordRequestDTO dto) Changes the password of a user after validating the old password.