Uses of Class
org.powertac.visualizer.service.dto.UserDTO
-
Packages that use UserDTO Package Description org.powertac.visualizer.service Service layer beans.org.powertac.visualizer.service.mapper MapStruct mappers for mapping domain objects and Data Transfer Objects.org.powertac.visualizer.web.rest Spring MVC REST controllers.org.powertac.visualizer.web.rest.vm View Models used by Spring MVC REST controllers. -
-
Uses of UserDTO in org.powertac.visualizer.service
Methods in org.powertac.visualizer.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 org.powertac.visualizer.service with parameters of type UserDTO Modifier and Type Method Description User
UserService. createUser(UserDTO userDTO)
Optional<UserDTO>
UserService. updateUser(UserDTO userDTO)
Update all information for a specific user, and return the modified user. -
Uses of UserDTO in org.powertac.visualizer.service.mapper
Methods in org.powertac.visualizer.service.mapper that return UserDTO Modifier and Type Method Description UserDTO
UserMapper. userToUserDTO(User user)
UserDTO
UserMapperImpl. userToUserDTO(User user)
Methods in org.powertac.visualizer.service.mapper that return types with arguments of type UserDTO Modifier and Type Method Description List<UserDTO>
UserMapper. usersToUserDTOs(List<User> users)
List<UserDTO>
UserMapperImpl. usersToUserDTOs(List<User> users)
Methods in org.powertac.visualizer.service.mapper with parameters of type UserDTO Modifier and Type Method Description User
UserMapper. userDTOToUser(UserDTO userDTO)
User
UserMapperImpl. userDTOToUser(UserDTO userDTO)
Method parameters in org.powertac.visualizer.service.mapper with type arguments of type UserDTO Modifier and Type Method Description List<User>
UserMapper. userDTOsToUsers(List<UserDTO> userDTOs)
List<User>
UserMapperImpl. userDTOsToUsers(List<UserDTO> userDTOs)
-
Uses of UserDTO in org.powertac.visualizer.web.rest
Methods in org.powertac.visualizer.web.rest that return types with arguments of type UserDTO Modifier and Type Method Description org.springframework.http.ResponseEntity<UserDTO>
UserResource. createUser(ManagedUserVM managedUserVM)
POST /users : Creates a new user.org.springframework.http.ResponseEntity<UserDTO>
AccountResource. getAccount()
GET /account : get the current user.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(ManagedUserVM managedUserVM)
PUT /users : Updates an existing User.Methods in org.powertac.visualizer.web.rest with parameters of type UserDTO Modifier and Type Method Description org.springframework.http.ResponseEntity<String>
AccountResource. saveAccount(@Valid UserDTO userDTO)
POST /account : update the current user information. -
Uses of UserDTO in org.powertac.visualizer.web.rest.vm
Subclasses of UserDTO in org.powertac.visualizer.web.rest.vm Modifier and Type Class Description class
ManagedUserVM
View Model extending the UserDTO, which is meant to be used in the user management UI.
-