@Path(value="/process-definition")
@Produces(value="application/json")
public interface HistoricProcessDefinitionRestService
Modifier and Type | Method and Description |
---|---|
List<CleanableHistoricProcessInstanceReportResultDto> |
getCleanableHistoricProcessInstanceReport(javax.ws.rs.core.UriInfo uriInfo,
Integer firstResult,
Integer maxResults) |
CountResultDto |
getCleanableHistoricProcessInstanceReportCount(javax.ws.rs.core.UriInfo uriInfo) |
List<HistoricActivityStatisticsDto> |
getHistoricActivityStatistics(javax.ws.rs.core.UriInfo uriInfo,
String processDefinitionId,
Boolean includeCanceled,
Boolean includeFinished,
Boolean includeCompleteScope,
String sortBy,
String sortOrder) |
static final String PATH
@GET @Path(value="/{id}/statistics") @Produces(value="application/json") List<HistoricActivityStatisticsDto> getHistoricActivityStatistics(@Context javax.ws.rs.core.UriInfo uriInfo, @PathParam(value="id") String processDefinitionId, @QueryParam(value="canceled") Boolean includeCanceled, @QueryParam(value="finished") Boolean includeFinished, @QueryParam(value="completeScope") Boolean includeCompleteScope, @QueryParam(value="sortBy") String sortBy, @QueryParam(value="sortOrder") String sortOrder)
@GET @Path(value="/cleanable-process-instance-report") @Produces(value="application/json") List<CleanableHistoricProcessInstanceReportResultDto> getCleanableHistoricProcessInstanceReport(@Context javax.ws.rs.core.UriInfo uriInfo, @QueryParam(value="firstResult") Integer firstResult, @QueryParam(value="maxResults") Integer maxResults)
@GET @Path(value="/cleanable-process-instance-report/count") @Produces(value="application/json") CountResultDto getCleanableHistoricProcessInstanceReportCount(@Context javax.ws.rs.core.UriInfo uriInfo)
Copyright © 2019. All rights reserved.