Package org.camunda.bpm.engine.rest
Interface EventSubscriptionRestService
-
- All Known Implementing Classes:
EventSubscriptionRestServiceImpl
@Produces("application/json") public interface EventSubscriptionRestService
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
PATH
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<EventSubscriptionDto>
getEventSubscriptions(javax.ws.rs.core.UriInfo uriInfo, java.lang.Integer firstResult, java.lang.Integer maxResults)
Exposes theEventSubscriptionQuery
interface as a REST service.CountResultDto
getEventSubscriptionsCount(javax.ws.rs.core.UriInfo uriInfo)
Number of event subscriptions
-
-
-
Field Detail
-
PATH
static final java.lang.String PATH
- See Also:
- Constant Field Values
-
-
Method Detail
-
getEventSubscriptions
@GET @Produces("application/json") java.util.List<EventSubscriptionDto> getEventSubscriptions(@Context javax.ws.rs.core.UriInfo uriInfo, @QueryParam("firstResult") java.lang.Integer firstResult, @QueryParam("maxResults") java.lang.Integer maxResults)
Exposes theEventSubscriptionQuery
interface as a REST service.- Parameters:
uriInfo
-firstResult
-maxResults
-- Returns:
-
getEventSubscriptionsCount
@GET @Path("/count") @Produces("application/json") CountResultDto getEventSubscriptionsCount(@Context javax.ws.rs.core.UriInfo uriInfo)
Number of event subscriptions- Returns:
-
-