Interface HistoricTaskInstanceRestService
- All Known Implementing Classes:
HistoricTaskInstanceRestServiceImpl
@Path("/variable-instance")
@Produces("application/json")
public interface HistoricTaskInstanceRestService
- Author:
- Roman Smirnov
-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptionjakarta.ws.rs.core.Response
getHistoricTaskInstanceReport
(jakarta.ws.rs.core.UriInfo uriInfo) Provides a report sub modulegetHistoricTaskInstances
(jakarta.ws.rs.core.UriInfo uriInfo, Integer firstResult, Integer maxResults) Exposes theHistoricTaskInstanceQuery
interface as a REST service.getHistoricTaskInstancesCount
(jakarta.ws.rs.core.UriInfo uriInfo) queryHistoricTaskInstances
(HistoricTaskInstanceQueryDto queryDto, Integer firstResult, Integer maxResults)
-
Field Details
-
PATH
- See Also:
-
-
Method Details
-
getHistoricTaskInstances
@GET @Produces("application/json") List<HistoricTaskInstanceDto> getHistoricTaskInstances(@Context jakarta.ws.rs.core.UriInfo uriInfo, @QueryParam("firstResult") Integer firstResult, @QueryParam("maxResults") Integer maxResults) Exposes theHistoricTaskInstanceQuery
interface 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 jakarta.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") jakarta.ws.rs.core.Response getHistoricTaskInstanceReport(@Context jakarta.ws.rs.core.UriInfo uriInfo) Provides a report sub module
-