Class GroupResource
java.lang.Object
org.flowable.rest.service.api.identity.BaseGroupResource
org.flowable.rest.service.api.identity.GroupResource
- Author:
- Frederik Heremans
-
Field Summary
Fields inherited from class org.flowable.rest.service.api.identity.BaseGroupResource
identityService, restApiInterceptor, restResponseFactory
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
deleteGroup
(String groupId) updateGroup
(String groupId, GroupRequest groupRequest) Methods inherited from class org.flowable.rest.service.api.identity.BaseGroupResource
getGroupFromRequest
-
Constructor Details
-
GroupResource
public GroupResource()
-
-
Method Details
-
getGroup
@GetMapping(value="/identity/groups/{groupId}", produces="application/json") public GroupResponse getGroup(@PathVariable String groupId) -
updateGroup
@PutMapping(value="/identity/groups/{groupId}", produces="application/json") public GroupResponse updateGroup(@PathVariable String groupId, @RequestBody GroupRequest groupRequest) -
deleteGroup
@DeleteMapping("/identity/groups/{groupId}") @ResponseStatus(NO_CONTENT) public void deleteGroup(@PathVariable String groupId)
-