Interface HistoricDetailRestService
- 
- All Known Implementing Classes:
 HistoricDetailRestServiceImpl
@Path("/variable-instance") @Produces("application/json") public interface HistoricDetailRestService- Author:
 - Roman Smirnov
 
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<HistoricDetailDto>getHistoricDetails(javax.ws.rs.core.UriInfo uriInfo, Integer firstResult, Integer maxResults, boolean deserializeObjectValues)Exposes theHistoricActivityInstanceQueryinterface as a REST service.CountResultDtogetHistoricDetailsCount(javax.ws.rs.core.UriInfo uriInfo)HistoricDetailResourcehistoricDetail(String detailId)List<HistoricDetailDto>queryHistoricDetails(HistoricDetailQueryDto queryDto, Integer firstResult, Integer maxResults, boolean deserializeObjectValues)Exposes theHistoricActivityInstanceQueryinterface as a REST service with additional query parameters (compared to the GET alternative). 
 - 
 
- 
- 
Field Detail
- 
PATH
static final String PATH
- See Also:
 - Constant Field Values
 
 
 - 
 
- 
Method Detail
- 
historicDetail
@Path("/{id}") HistoricDetailResource historicDetail(@PathParam("id") String detailId) 
- 
getHistoricDetails
@GET @Produces("application/json") List<HistoricDetailDto> getHistoricDetails(@Context javax.ws.rs.core.UriInfo uriInfo, @QueryParam("firstResult") Integer firstResult, @QueryParam("maxResults") Integer maxResults, @QueryParam("deserializeValues") @DefaultValue("true") boolean deserializeObjectValues)Exposes theHistoricActivityInstanceQueryinterface 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 theHistoricActivityInstanceQueryinterface 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 javax.ws.rs.core.UriInfo uriInfo) 
 - 
 
 -