Interface HistoricTaskInstanceRestService
-
- All Known Implementing Classes:
HistoricTaskInstanceRestServiceImpl
@Path("/variable-instance") @Produces("application/json") public interface HistoricTaskInstanceRestService- Author:
- Roman Smirnov
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringPATH
-
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 modulejava.util.List<HistoricTaskInstanceDto>getHistoricTaskInstances(javax.ws.rs.core.UriInfo uriInfo, java.lang.Integer firstResult, java.lang.Integer maxResults)Exposes theHistoricTaskInstanceQueryinterface as a REST service.CountResultDtogetHistoricTaskInstancesCount(javax.ws.rs.core.UriInfo uriInfo)java.util.List<HistoricTaskInstanceDto>queryHistoricTaskInstances(HistoricTaskInstanceQueryDto queryDto, java.lang.Integer firstResult, java.lang.Integer maxResults)CountResultDtoqueryHistoricTaskInstancesCount(HistoricTaskInstanceQueryDto queryDto)
-
-
-
Field Detail
-
PATH
static final java.lang.String PATH
- See Also:
- Constant Field Values
-
-
Method Detail
-
getHistoricTaskInstances
@GET @Produces("application/json") java.util.List<HistoricTaskInstanceDto> getHistoricTaskInstances(@Context javax.ws.rs.core.UriInfo uriInfo, @QueryParam("firstResult") java.lang.Integer firstResult, @QueryParam("maxResults") java.lang.Integer maxResults)Exposes theHistoricTaskInstanceQueryinterface as a REST service.- Parameters:
query-firstResult-maxResults-- Returns:
-
queryHistoricTaskInstances
@POST @Consumes("application/json") @Produces("application/json") java.util.List<HistoricTaskInstanceDto> queryHistoricTaskInstances(HistoricTaskInstanceQueryDto queryDto, @QueryParam("firstResult") java.lang.Integer firstResult, @QueryParam("maxResults") java.lang.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
-
-