public interface UserRestApiDocs
| Modifier and Type | Method and Description |
|---|---|
org.springframework.http.ResponseEntity<UserDTO> |
createUser(User user,
javax.servlet.http.HttpServletRequest request,
org.springframework.web.util.UriComponentsBuilder uriBuilder) |
org.springframework.http.ResponseEntity<Void> |
deleteUser(Long userId) |
org.springframework.http.ResponseEntity<UserDTO> |
getUserByEmail(String email) |
org.springframework.http.ResponseEntity<UserDTO> |
getUserById(Long userId) |
org.springframework.http.ResponseEntity<UserDTO> |
updateUser(Long userId,
User user,
javax.servlet.http.HttpServletRequest request) |
org.springframework.http.ResponseEntity<UserDTO> getUserByEmail(String email) throws UnsupportedEncodingException
UnsupportedEncodingExceptionorg.springframework.http.ResponseEntity<UserDTO> createUser(User user, javax.servlet.http.HttpServletRequest request, org.springframework.web.util.UriComponentsBuilder uriBuilder) throws URISyntaxException
URISyntaxExceptionorg.springframework.http.ResponseEntity<UserDTO> updateUser(Long userId, User user, javax.servlet.http.HttpServletRequest request) throws URISyntaxException
URISyntaxException