@RestController public class ApiGroupsResource extends Object
| Modifier and Type | Field and Description |
|---|---|
protected GroupService |
groupService |
| Constructor and Description |
|---|
ApiGroupsResource() |
| Modifier and Type | Method and Description |
|---|---|
List<GroupRepresentation> |
findGroupsByFilter(String filter) |
GroupRepresentation |
getGroupInformation(String groupId) |
@Autowired protected GroupService groupService
@GetMapping(value="/groups/{groupId}",
produces="application/json")
public GroupRepresentation getGroupInformation(@PathVariable
String groupId)
@GetMapping(value="/groups",
produces="application/json")
public List<GroupRepresentation> findGroupsByFilter(@RequestParam(value="filter")
String filter)
Copyright © 2023 Flowable. All rights reserved.