Interface UserMapper
-
- All Known Implementing Classes:
UserMapperImpl
public interface UserMapper
Mapper for the entity User and its DTO UserDTO.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default Set<Authority>
authoritiesFromStrings(Set<String> strings)
default Set<String>
stringsFromAuthorities(Set<Authority> authorities)
List<User>
userDTOsToUsers(List<UserDTO> userDTOs)
User
userDTOToUser(UserDTO userDTO)
default User
userFromId(Long id)
List<UserDTO>
usersToUserDTOs(List<User> users)
UserDTO
userToUserDTO(User user)
-