Interface HistoricProcessDefinitionRestService
- All Known Implementing Classes:
HistoricProcessDefinitionRestServiceImpl
@Path("/process-definition")
@Produces("application/json")
public interface HistoricProcessDefinitionRestService
- Author:
- Roman Smirnov
-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptiongetCleanableHistoricProcessInstanceReport
(jakarta.ws.rs.core.UriInfo uriInfo, Integer firstResult, Integer maxResults) getCleanableHistoricProcessInstanceReportCount
(jakarta.ws.rs.core.UriInfo uriInfo) getHistoricActivityStatistics
(jakarta.ws.rs.core.UriInfo uriInfo, String processDefinitionId)
-
Field Details
-
PATH
- See Also:
-
-
Method Details
-
getHistoricActivityStatistics
@GET @Path("/{id}/statistics") @Produces("application/json") List<HistoricActivityStatisticsDto> getHistoricActivityStatistics(@Context jakarta.ws.rs.core.UriInfo uriInfo, @PathParam("id") String processDefinitionId) -
getCleanableHistoricProcessInstanceReport
@GET @Path("/cleanable-process-instance-report") @Produces("application/json") List<CleanableHistoricProcessInstanceReportResultDto> getCleanableHistoricProcessInstanceReport(@Context jakarta.ws.rs.core.UriInfo uriInfo, @QueryParam("firstResult") Integer firstResult, @QueryParam("maxResults") Integer maxResults) -
getCleanableHistoricProcessInstanceReportCount
@GET @Path("/cleanable-process-instance-report/count") @Produces("application/json") CountResultDto getCleanableHistoricProcessInstanceReportCount(@Context jakarta.ws.rs.core.UriInfo uriInfo)
-