Package org.camunda.bpm.engine.rest
Interface GroupRestService
- All Known Implementing Classes:
GroupRestServiceImpl
@Produces("application/json")
public interface GroupRestService
- Author:
- Daniel Meyer
-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptionavailableOperations
(jakarta.ws.rs.core.UriInfo context) void
createGroup
(GroupDto GroupDto) getGroupCount
(jakarta.ws.rs.core.UriInfo uriInfo) queryGroupCount
(GroupQueryDto query) queryGroups
(jakarta.ws.rs.core.UriInfo uriInfo, Integer firstResult, Integer maxResults) queryGroups
(GroupQueryDto query, Integer firstResult, Integer maxResults)
-
Field Details
-
PATH
- See Also:
-
-
Method Details
-
getGroup
-
queryGroups
-
getGroupCount
@GET @Path("/count") @Produces("application/json") CountResultDto getGroupCount(@Context jakarta.ws.rs.core.UriInfo uriInfo) -
queryGroups
@POST @Consumes("application/json") @Produces("application/json") List<GroupDto> queryGroups(GroupQueryDto query, @QueryParam("firstResult") Integer firstResult, @QueryParam("maxResults") Integer maxResults) -
queryGroupCount
@POST @Path("/count") @Consumes("application/json") @Produces("application/json") CountResultDto queryGroupCount(GroupQueryDto query) -
createGroup
-
availableOperations
@OPTIONS @Produces("application/json") ResourceOptionsDto availableOperations(@Context jakarta.ws.rs.core.UriInfo context)
-