Class IncidentRestService
java.lang.Object
org.camunda.bpm.webapp.plugin.resource.AbstractAppPluginResource<CockpitPlugin>
org.camunda.bpm.cockpit.plugin.resource.AbstractCockpitPluginResource
org.camunda.bpm.cockpit.plugin.resource.AbstractPluginResource
org.camunda.bpm.cockpit.impl.plugin.resources.IncidentRestService
- Author:
- roman.smirnov
-
Field Summary
Fields inherited from class org.camunda.bpm.webapp.plugin.resource.AbstractAppPluginResource
engineName, runtimeDelegate
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected void
getIncidents
(jakarta.ws.rs.core.UriInfo uriInfo, Integer firstResult, Integer maxResults) getIncidentsCount
(jakarta.ws.rs.core.UriInfo uriInfo) queryIncidents
(IncidentQueryDto queryParameter, Integer firstResult, Integer maxResults) queryIncidentsCount
(IncidentQueryDto queryParameter) Methods inherited from class org.camunda.bpm.cockpit.plugin.resource.AbstractCockpitPluginResource
addPermissionCheck, configureAuthorizationCheck, configureTenantCheck, getCommandExecutor, getCurrentAuthentication, getQueryService, isAuthorizationEnabled, isCamundaAdmin, isPermissionDisabled, isTenantCheckEnabled
Methods inherited from class org.camunda.bpm.webapp.plugin.resource.AbstractAppPluginResource
getProcessEngine
-
Field Details
-
PATH
- See Also:
-
-
Constructor Details
-
IncidentRestService
-
-
Method Details
-
getIncidents
@GET @Produces("application/json") public List<IncidentDto> getIncidents(@Context jakarta.ws.rs.core.UriInfo uriInfo, @QueryParam("firstResult") Integer firstResult, @QueryParam("maxResults") Integer maxResults) -
queryIncidents
@POST @Produces("application/json") @Consumes("application/json") public List<IncidentDto> queryIncidents(IncidentQueryDto queryParameter, @QueryParam("firstResult") Integer firstResult, @QueryParam("maxResults") Integer maxResults) -
getIncidentsCount
@GET @Path("/count") @Produces("application/json") public CountResultDto getIncidentsCount(@Context jakarta.ws.rs.core.UriInfo uriInfo) -
queryIncidentsCount
@POST @Path("/count") @Consumes("application/json") @Produces("application/json") public CountResultDto queryIncidentsCount(IncidentQueryDto queryParameter) -
configureExecutionQuery
-