Uses of Class
de.trustable.ca3s.core.service.dto.UserDTO
-
Packages that use UserDTO Package Description de.trustable.ca3s.core.repository Spring Data JPA repositories.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.repository
Methods in de.trustable.ca3s.core.repository that return types with arguments of type UserDTO Modifier and Type Method Description static org.springframework.data.domain.Page<UserDTO>UserSpecifications. handleQueryParamsUser(javax.persistence.EntityManager entityManager, javax.persistence.criteria.CriteriaBuilder cb, Map<String,String[]> parameterMap) -
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. findSelection(Map<String,String[]> parameterMap)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, String activationKey)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. toDtoId(User user)UserDTOUserMapper. toDtoLogin(User user)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 Set<UserDTO>UserMapper. toDtoIdSet(Set<User> users)Set<UserDTO>UserMapper. toDtoLoginSet(Set<User> users)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) -
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<List<UserDTO>>UserResource. getUsersByRole(String role)GET /users/role/:role: get the user with a given role.org.springframework.http.ResponseEntity<List<UserDTO>>UserResource. getUsersBySelection(org.springframework.data.domain.Pageable pageable, javax.servlet.http.HttpServletRequest request)GET /certificates: get all the certificates.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 AdminUserDTO, which is meant to be used in the user management UI.
-