Interface HistoricCaseDefinitionRestService
-
- All Known Implementing Classes:
HistoricCaseDefinitionRestServiceImpl
@Path("/case-definition") @Produces("application/json") public interface HistoricCaseDefinitionRestService
- 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<CleanableHistoricCaseInstanceReportResultDto>
getCleanableHistoricCaseInstanceReport(javax.ws.rs.core.UriInfo uriInfo, java.lang.Integer firstResult, java.lang.Integer maxResults)
CountResultDto
getCleanableHistoricCaseInstanceReportCount(javax.ws.rs.core.UriInfo uriInfo)
java.util.List<HistoricCaseActivityStatisticsDto>
getHistoricCaseActivityStatistics(java.lang.String caseDefinitionId)
-
-
-
Field Detail
-
PATH
static final java.lang.String PATH
- See Also:
- Constant Field Values
-
-
Method Detail
-
getHistoricCaseActivityStatistics
@GET @Path("/{id}/statistics") @Produces("application/json") java.util.List<HistoricCaseActivityStatisticsDto> getHistoricCaseActivityStatistics(@PathParam("id") java.lang.String caseDefinitionId)
-
getCleanableHistoricCaseInstanceReport
@GET @Path("/cleanable-case-instance-report") @Produces("application/json") java.util.List<CleanableHistoricCaseInstanceReportResultDto> getCleanableHistoricCaseInstanceReport(@Context javax.ws.rs.core.UriInfo uriInfo, @QueryParam("firstResult") java.lang.Integer firstResult, @QueryParam("maxResults") java.lang.Integer maxResults)
-
getCleanableHistoricCaseInstanceReportCount
@GET @Path("/cleanable-case-instance-report/count") @Produces("application/json") CountResultDto getCleanableHistoricCaseInstanceReportCount(@Context javax.ws.rs.core.UriInfo uriInfo)
-
-