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 SummaryFieldsFields inherited from class org.camunda.bpm.webapp.plugin.resource.AbstractAppPluginResourceengineName, runtimeDelegate
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionprotected voidgetIncidents(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.AbstractCockpitPluginResourceaddPermissionCheck, configureAuthorizationCheck, configureTenantCheck, getCommandExecutor, getCurrentAuthentication, getQueryService, isAuthorizationEnabled, isCamundaAdmin, isPermissionDisabled, isTenantCheckEnabledMethods inherited from class org.camunda.bpm.webapp.plugin.resource.AbstractAppPluginResourcegetProcessEngine
- 
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
 
-