Interface HistoricDetailRestService
- All Known Implementing Classes:
HistoricDetailRestServiceImpl
@Path("/variable-instance")
@Produces("application/json")
public interface HistoricDetailRestService
- Author:
- Roman Smirnov
-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptiongetHistoricDetails
(jakarta.ws.rs.core.UriInfo uriInfo, Integer firstResult, Integer maxResults, boolean deserializeObjectValues) Exposes theHistoricActivityInstanceQuery
interface as a REST service.getHistoricDetailsCount
(jakarta.ws.rs.core.UriInfo uriInfo) historicDetail
(String detailId) queryHistoricDetails
(HistoricDetailQueryDto queryDto, Integer firstResult, Integer maxResults, boolean deserializeObjectValues) Exposes theHistoricActivityInstanceQuery
interface as a REST service with additional query parameters (compared to the GET alternative).
-
Field Details
-
PATH
- See Also:
-
-
Method Details
-
historicDetail
-
getHistoricDetails
@GET @Produces("application/json") List<HistoricDetailDto> getHistoricDetails(@Context jakarta.ws.rs.core.UriInfo uriInfo, @QueryParam("firstResult") Integer firstResult, @QueryParam("maxResults") Integer maxResults, @QueryParam("deserializeValues") @DefaultValue("true") boolean deserializeObjectValues) Exposes theHistoricActivityInstanceQuery
interface as a REST service.- Parameters:
uriInfo
-firstResult
-maxResults
-- Returns:
-
queryHistoricDetails
@POST @Consumes("application/json") @Produces("application/json") List<HistoricDetailDto> queryHistoricDetails(HistoricDetailQueryDto queryDto, @QueryParam("firstResult") Integer firstResult, @QueryParam("maxResults") Integer maxResults, @QueryParam("deserializeValues") @DefaultValue("true") boolean deserializeObjectValues) Exposes theHistoricActivityInstanceQuery
interface as a REST service with additional query parameters (compared to the GET alternative).- Parameters:
queryDto
-firstResult
-maxResults
-- Returns:
-
getHistoricDetailsCount
@GET @Path("/count") @Produces("application/json") CountResultDto getHistoricDetailsCount(@Context jakarta.ws.rs.core.UriInfo uriInfo)
-