Uses of Class
de.trustable.ca3s.core.service.dto.UserDTO
-
Packages that use UserDTO Package Description de.trustable.ca3s.core.service Service layer beans.de.trustable.ca3s.core.service.mapper MapStruct mappers for mapping domain objects and Data Transfer Objects.de.trustable.ca3s.core.web.rest Spring MVC REST controllers.de.trustable.ca3s.core.web.rest.vm View Models used by Spring MVC REST controllers. -
-
Uses of UserDTO in de.trustable.ca3s.core.service
Methods in de.trustable.ca3s.core.service that return types with arguments of type UserDTO Modifier and Type Method Description org.springframework.data.domain.Page<UserDTO>UserService. getAllManagedUsers(org.springframework.data.domain.Pageable pageable)Optional<UserDTO>UserService. updateUser(UserDTO userDTO)Update all information for a specific user, and return the modified user.Methods in de.trustable.ca3s.core.service with parameters of type UserDTO Modifier and Type Method Description UserUserService. createUser(UserDTO userDTO)UserUserService. registerUser(UserDTO userDTO, String password)Optional<UserDTO>UserService. updateUser(UserDTO userDTO)Update all information for a specific user, and return the modified user. -
Uses of UserDTO in de.trustable.ca3s.core.service.mapper
Methods in de.trustable.ca3s.core.service.mapper that return UserDTO Modifier and Type Method Description UserDTOUserMapper. userToUserDTO(User user)Methods in de.trustable.ca3s.core.service.mapper that return types with arguments of type UserDTO Modifier and Type Method Description List<UserDTO>UserMapper. usersToUserDTOs(List<User> users)Methods in de.trustable.ca3s.core.service.mapper with parameters of type UserDTO Modifier and Type Method Description UserUserMapper. userDTOToUser(UserDTO userDTO)Method parameters in de.trustable.ca3s.core.service.mapper with type arguments of type UserDTO Modifier and Type Method Description List<User>UserMapper. userDTOsToUsers(List<UserDTO> userDTOs) -
Uses of UserDTO in de.trustable.ca3s.core.web.rest
Methods in de.trustable.ca3s.core.web.rest that return UserDTO Modifier and Type Method Description UserDTOAccountResource. getAccount()GET /account: get the current user.Methods in de.trustable.ca3s.core.web.rest that return types with arguments of type UserDTO Modifier and Type Method Description org.springframework.http.ResponseEntity<List<UserDTO>>UserResource. getAllUsers(org.springframework.data.domain.Pageable pageable)GET /users: get all users.org.springframework.http.ResponseEntity<UserDTO>UserResource. getUser(String login)GET /users/:login: get the "login" user.org.springframework.http.ResponseEntity<UserDTO>UserResource. updateUser(@Valid UserDTO userDTO)PUT /users: Updates an existing User.Methods in de.trustable.ca3s.core.web.rest with parameters of type UserDTO Modifier and Type Method Description org.springframework.http.ResponseEntity<User>UserResource. createUser(@Valid UserDTO userDTO)POST /users: Creates a new user.voidAccountResource. saveAccount(@Valid UserDTO userDTO)POST /account: update the current user information.org.springframework.http.ResponseEntity<UserDTO>UserResource. updateUser(@Valid UserDTO userDTO)PUT /users: Updates an existing User. -
Uses of UserDTO in de.trustable.ca3s.core.web.rest.vm
Subclasses of UserDTO in de.trustable.ca3s.core.web.rest.vm Modifier and Type Class Description classManagedUserVMView Model extending the UserDTO, which is meant to be used in the user management UI.
-