Class ProcessInstanceRestService
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.ProcessInstanceRestService
-
Nested Class Summary
Modifier and TypeClassDescriptionprotected class
protected class
-
Field Summary
Modifier and TypeFieldDescriptionprotected com.fasterxml.jackson.databind.ObjectMapper
static final String
Fields inherited from class org.camunda.bpm.webapp.plugin.resource.AbstractAppPluginResource
engineName, runtimeDelegate
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected void
getProcessInstances
(jakarta.ws.rs.core.UriInfo uriInfo, Integer firstResult, Integer maxResults) getProcessInstancesCount
(jakarta.ws.rs.core.UriInfo uriInfo) protected void
injectObjectMapper
(ProcessInstanceQueryDto queryParameter) queryProcessInstances
(ProcessInstanceQueryDto queryParameter, Integer firstResult, Integer maxResults) queryProcessInstancesCount
(ProcessInstanceQueryDto queryParameter) void
setObjectMapper
(com.fasterxml.jackson.databind.ObjectMapper objectMapper) 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:
-
objectMapper
protected com.fasterxml.jackson.databind.ObjectMapper objectMapper
-
-
Constructor Details
-
ProcessInstanceRestService
-
-
Method Details
-
getProcessInstance
-
getProcessInstances
@GET @Produces("application/json") public List<ProcessInstanceDto> getProcessInstances(@Context jakarta.ws.rs.core.UriInfo uriInfo, @QueryParam("firstResult") Integer firstResult, @QueryParam("maxResults") Integer maxResults) -
queryProcessInstances
@POST @Produces("application/json") @Consumes("application/json") public List<ProcessInstanceDto> queryProcessInstances(ProcessInstanceQueryDto queryParameter, @QueryParam("firstResult") Integer firstResult, @QueryParam("maxResults") Integer maxResults) -
getProcessInstancesCount
@GET @Produces("application/json") @Path("/count") public CountResultDto getProcessInstancesCount(@Context jakarta.ws.rs.core.UriInfo uriInfo) -
queryProcessInstancesCount
@POST @Produces("application/json") @Consumes("application/json") @Path("/count") public CountResultDto queryProcessInstancesCount(ProcessInstanceQueryDto queryParameter) -
configureExecutionQuery
-
injectObjectMapper
-
setObjectMapper
public void setObjectMapper(com.fasterxml.jackson.databind.ObjectMapper objectMapper)
-