Class UserResource
java.lang.Object
org.flowable.rest.service.api.identity.BaseUserResource
org.flowable.rest.service.api.identity.UserResource
- Author:
- Frederik Heremans, Filip Hrisafov
-
Field Summary
Fields inherited from class org.flowable.rest.service.api.identity.BaseUserResource
identityService, restApiInterceptor, restResponseFactory
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
deleteUser
(String userId) updateUser
(String userId, UserRequest userRequest) Methods inherited from class org.flowable.rest.service.api.identity.BaseUserResource
getUserFromRequest
-
Constructor Details
-
UserResource
public UserResource()
-
-
Method Details
-
getUser
@GetMapping(value="/identity/users/{userId}", produces="application/json") public UserResponse getUser(@PathVariable String userId) -
updateUser
@PutMapping(value="/identity/users/{userId}", produces="application/json") public UserResponse updateUser(@PathVariable String userId, @RequestBody UserRequest userRequest) -
deleteUser
@DeleteMapping("/identity/users/{userId}") @ResponseStatus(NO_CONTENT) public void deleteUser(@PathVariable String userId)
-