Class GroupResource
- java.lang.Object
-
- org.flowable.idm.rest.service.api.group.BaseGroupResource
-
- org.flowable.idm.rest.service.api.group.GroupResource
-
@RestController public class GroupResource extends BaseGroupResource
- Author:
- Frederik Heremans
-
-
Field Summary
-
Fields inherited from class org.flowable.idm.rest.service.api.group.BaseGroupResource
identityService, restApiInterceptor, restResponseFactory
-
-
Constructor Summary
Constructors Constructor Description GroupResource()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddeleteGroup(String groupId, javax.servlet.http.HttpServletResponse response)GroupResponsegetGroup(String groupId, javax.servlet.http.HttpServletRequest request)GroupResponseupdateGroup(String groupId, GroupRequest groupRequest, javax.servlet.http.HttpServletRequest request)-
Methods inherited from class org.flowable.idm.rest.service.api.group.BaseGroupResource
getGroupFromRequest
-
-
-
-
Method Detail
-
getGroup
@GetMapping(value="/groups/{groupId}", produces="application/json") public GroupResponse getGroup(@PathVariable String groupId, javax.servlet.http.HttpServletRequest request)
-
updateGroup
@PutMapping(value="/groups/{groupId}", produces="application/json") public GroupResponse updateGroup(@PathVariable String groupId, @RequestBody GroupRequest groupRequest, javax.servlet.http.HttpServletRequest request)
-
deleteGroup
@DeleteMapping("/groups/{groupId}") public void deleteGroup(@PathVariable String groupId, javax.servlet.http.HttpServletResponse response)
-
-