Interface HistoricProcessDefinitionRestService
-
- All Known Implementing Classes:
HistoricProcessDefinitionRestServiceImpl
@Path("/process-definition") @Produces("application/json") public interface HistoricProcessDefinitionRestService
- Author:
- Roman Smirnov
-
-
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<CleanableHistoricProcessInstanceReportResultDto>
getCleanableHistoricProcessInstanceReport(javax.ws.rs.core.UriInfo uriInfo, java.lang.Integer firstResult, java.lang.Integer maxResults)
CountResultDto
getCleanableHistoricProcessInstanceReportCount(javax.ws.rs.core.UriInfo uriInfo)
java.util.List<HistoricActivityStatisticsDto>
getHistoricActivityStatistics(javax.ws.rs.core.UriInfo uriInfo, java.lang.String processDefinitionId)
-
-
-
Field Detail
-
PATH
static final java.lang.String PATH
- See Also:
- Constant Field Values
-
-
Method Detail
-
getHistoricActivityStatistics
@GET @Path("/{id}/statistics") @Produces("application/json") java.util.List<HistoricActivityStatisticsDto> getHistoricActivityStatistics(@Context javax.ws.rs.core.UriInfo uriInfo, @PathParam("id") java.lang.String processDefinitionId)
-
getCleanableHistoricProcessInstanceReport
@GET @Path("/cleanable-process-instance-report") @Produces("application/json") java.util.List<CleanableHistoricProcessInstanceReportResultDto> getCleanableHistoricProcessInstanceReport(@Context javax.ws.rs.core.UriInfo uriInfo, @QueryParam("firstResult") java.lang.Integer firstResult, @QueryParam("maxResults") java.lang.Integer maxResults)
-
getCleanableHistoricProcessInstanceReportCount
@GET @Path("/cleanable-process-instance-report/count") @Produces("application/json") CountResultDto getCleanableHistoricProcessInstanceReportCount(@Context javax.ws.rs.core.UriInfo uriInfo)
-
-