Class GroupResource

java.lang.Object
org.flowable.rest.service.api.identity.BaseGroupResource
org.flowable.rest.service.api.identity.GroupResource

@RestController public class GroupResource extends BaseGroupResource
Author:
Frederik Heremans
  • 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)