Uses of Class
com.bluebell.greenhouse.platform.models.api.dto.security.UserDTO
Packages that use UserDTO
Package
Description
Contains controllers for handling
Users and securing api endpoints.Contains the security orchestrators.
Contains classes that implement DTO representations of
User-related entities.-
Uses of UserDTO in com.bluebell.greenhouse.planter.controllers.security
Methods in com.bluebell.greenhouse.planter.controllers.security that return types with arguments of type UserDTOModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<UserDTO> Returns aResponseEntitycontaining aUserwith the given username.org.springframework.http.ResponseEntity<UserDTO> UserApiController.postCreateUser(@Valid CreateUpdateUserDTO data) Creates a newUser.org.springframework.http.ResponseEntity<UserDTO> SecurityApiController.postLogin(@Valid UsernamePasswordRequestDTO data) Logs a user into bluebell.org.springframework.http.ResponseEntity<UserDTO> UserApiController.postRotateApiKeyByAdministrator(@Valid RotateApiTokenDTO data) Rotates an existingUser's api token.org.springframework.http.ResponseEntity<UserDTO> UserApiController.putUpdateUser(@Valid CreateUpdateUserDTO data, AuthenticatedUserRef userRef) Updates an existingUser.org.springframework.http.ResponseEntity<UserDTO> UserApiController.putUpdateUserAccessByAdministrator(@Valid UpdateUserAccessDTO data) Updates an existingUser's access information.org.springframework.http.ResponseEntity<UserDTO> UserApiController.putUpdateUserByAdministrator(@Valid CreateUpdateUserDTO data) Updates an existingUsernot assigned to the current session. -
Uses of UserDTO in com.bluebell.greenhouse.planter.converters.security
Subclasses with type arguments of type UserDTO in com.bluebell.greenhouse.planter.converters.securityMethods in com.bluebell.greenhouse.planter.converters.security that return UserDTOModifier and TypeMethodDescriptionprotected UserDTOUserDTOConverter.convertNonNull(User entity) protected UserDTOUserDTOConverter.createEmptyDTO()Creates the empty DTO returned for a null source.Methods in com.bluebell.greenhouse.planter.converters.security that return types with arguments of type UserDTOModifier and TypeMethodDescriptionUserDTOConverter.convertAll(Collection<User> entities) Converts a page ofUsers, resolving every account's ledger figures in one batch. -
Uses of UserDTO in com.bluebell.greenhouse.planter.orchestrators.security
Methods in com.bluebell.greenhouse.planter.orchestrators.security that return UserDTOModifier and TypeMethodDescriptionUserOrchestrator.createUser(CreateUpdateUserDTO data) Creates aUser.Obtains theUsermatching the given username.Logs aUserinto bluebell.UserOrchestrator.rotateApiKeyByAdministrator(RotateApiTokenDTO data) Rotates the API token of theUsernamed in the payload.UserOrchestrator.updateUser(AuthenticatedUserRef userRef, CreateUpdateUserDTO data) Updates the authenticatedUser.UserOrchestrator.updateUserAccessByAdministrator(UpdateUserAccessDTO data) Updates the access of theUsernamed in the payload.UserOrchestrator.updateUserByAdministrator(CreateUpdateUserDTO data) Updates theUsernamed in the payload. -
Uses of UserDTO in com.bluebell.greenhouse.platform.models.api.dto.security
Subclasses with type arguments of type UserDTO in com.bluebell.greenhouse.platform.models.api.dto.securityMethod parameters in com.bluebell.greenhouse.platform.models.api.dto.security with type arguments of type UserDTOModifier and TypeMethodDescriptionstatic PaginatedUserDTOPaginatedUserDTO.from(PaginatedEntityDTO<UserDTO> source) Narrows a generic page into its typed equivalent.