Uses of Record Class
com.bluebell.greenhouse.platform.models.api.dto.security.CreateUpdateUserDTO
Packages that use CreateUpdateUserDTO
Package
Description
Contains controllers for handling
Users and securing api endpoints.Contains the security orchestrators.
Contains the service layer for
Users.-
Uses of CreateUpdateUserDTO in com.bluebell.greenhouse.planter.controllers.security
Methods in com.bluebell.greenhouse.planter.controllers.security with parameters of type CreateUpdateUserDTOModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<UserDTO> UserApiController.postCreateUser(@Valid CreateUpdateUserDTO data) Creates a newUser.org.springframework.http.ResponseEntity<UserDTO> UserApiController.putUpdateUser(@Valid CreateUpdateUserDTO data, AuthenticatedUserRef userRef) Updates an existingUser.org.springframework.http.ResponseEntity<UserDTO> UserApiController.putUpdateUserByAdministrator(@Valid CreateUpdateUserDTO data) Updates an existingUsernot assigned to the current session. -
Uses of CreateUpdateUserDTO in com.bluebell.greenhouse.planter.orchestrators.security
Methods in com.bluebell.greenhouse.planter.orchestrators.security with parameters of type CreateUpdateUserDTOModifier and TypeMethodDescriptionUserOrchestrator.createUser(CreateUpdateUserDTO data) Creates aUser.UserOrchestrator.updateUser(AuthenticatedUserRef userRef, CreateUpdateUserDTO data) Updates the authenticatedUser.UserOrchestrator.updateUserByAdministrator(CreateUpdateUserDTO data) Updates theUsernamed in the payload. -
Uses of CreateUpdateUserDTO in com.bluebell.greenhouse.radicle.services.security
Methods in com.bluebell.greenhouse.radicle.services.security with parameters of type CreateUpdateUserDTOModifier and TypeMethodDescriptionUserService.createUser(CreateUpdateUserDTO data) UserService.updateUser(User user, CreateUpdateUserDTO data)