Package org.camunda.bpm.engine.rest
Interface EventSubscriptionRestService
- All Known Implementing Classes:
EventSubscriptionRestServiceImpl
@Produces("application/json")
public interface EventSubscriptionRestService
-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptiongetEventSubscriptions
(jakarta.ws.rs.core.UriInfo uriInfo, Integer firstResult, Integer maxResults) Exposes theEventSubscriptionQuery
interface as a REST service.getEventSubscriptionsCount
(jakarta.ws.rs.core.UriInfo uriInfo) Number of event subscriptions
-
Field Details
-
PATH
- See Also:
-
-
Method Details
-
getEventSubscriptions
@GET @Produces("application/json") List<EventSubscriptionDto> getEventSubscriptions(@Context jakarta.ws.rs.core.UriInfo uriInfo, @QueryParam("firstResult") Integer firstResult, @QueryParam("maxResults") Integer maxResults) Exposes theEventSubscriptionQuery
interface as a REST service.- Parameters:
uriInfo
-firstResult
-maxResults
-- Returns:
-
getEventSubscriptionsCount
@GET @Path("/count") @Produces("application/json") CountResultDto getEventSubscriptionsCount(@Context jakarta.ws.rs.core.UriInfo uriInfo) Number of event subscriptions- Returns:
-