Interface HistoricTaskInstanceRestService
-
- All Known Implementing Classes:
HistoricTaskInstanceRestServiceImpl
@Path("/variable-instance") @Produces("application/json") public interface HistoricTaskInstanceRestService- Author:
- Roman Smirnov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description javax.ws.rs.core.ResponsegetHistoricTaskInstanceReport(javax.ws.rs.core.UriInfo uriInfo)Provides a report sub moduleList<HistoricTaskInstanceDto>getHistoricTaskInstances(javax.ws.rs.core.UriInfo uriInfo, Integer firstResult, Integer maxResults)Exposes theHistoricTaskInstanceQueryinterface as a REST service.CountResultDtogetHistoricTaskInstancesCount(javax.ws.rs.core.UriInfo uriInfo)List<HistoricTaskInstanceDto>queryHistoricTaskInstances(HistoricTaskInstanceQueryDto queryDto, Integer firstResult, Integer maxResults)CountResultDtoqueryHistoricTaskInstancesCount(HistoricTaskInstanceQueryDto queryDto)
-
-
-
Field Detail
-
PATH
static final String PATH
- See Also:
- Constant Field Values
-
-
Method Detail
-
getHistoricTaskInstances
@GET @Produces("application/json") List<HistoricTaskInstanceDto> getHistoricTaskInstances(@Context javax.ws.rs.core.UriInfo uriInfo, @QueryParam("firstResult") Integer firstResult, @QueryParam("maxResults") Integer maxResults)Exposes theHistoricTaskInstanceQueryinterface as a REST service.- Parameters:
query-firstResult-maxResults-- Returns:
-
queryHistoricTaskInstances
@POST @Consumes("application/json") @Produces("application/json") List<HistoricTaskInstanceDto> queryHistoricTaskInstances(HistoricTaskInstanceQueryDto queryDto, @QueryParam("firstResult") Integer firstResult, @QueryParam("maxResults") Integer maxResults)- Parameters:
query-firstResult-maxResults-- Returns:
-
getHistoricTaskInstancesCount
@GET @Path("/count") @Produces("application/json") CountResultDto getHistoricTaskInstancesCount(@Context javax.ws.rs.core.UriInfo uriInfo)
-
queryHistoricTaskInstancesCount
@POST @Path("/count") @Consumes("application/json") @Produces("application/json") CountResultDto queryHistoricTaskInstancesCount(HistoricTaskInstanceQueryDto queryDto)
-
getHistoricTaskInstanceReport
@GET @Path("report") @Produces("application/json") javax.ws.rs.core.Response getHistoricTaskInstanceReport(@Context javax.ws.rs.core.UriInfo uriInfo)Provides a report sub module
-
-