Interface HistoricVariableInstanceRestService
- 
- All Known Implementing Classes:
- HistoricVariableInstanceRestServiceImpl
 
 @Path("/variable-instance") @Produces("application/json") public interface HistoricVariableInstanceRestService
- 
- 
Field SummaryFields Modifier and Type Field Description static java.lang.StringPATH
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<HistoricVariableInstanceDto>getHistoricVariableInstances(javax.ws.rs.core.UriInfo uriInfo, java.lang.Integer firstResult, java.lang.Integer maxResults, boolean deserializeValues)Exposes theHistoricVariableInstanceQueryinterface as a REST service.CountResultDtogetHistoricVariableInstancesCount(javax.ws.rs.core.UriInfo uriInfo)java.util.List<HistoricVariableInstanceDto>queryHistoricVariableInstances(HistoricVariableInstanceQueryDto query, java.lang.Integer firstResult, java.lang.Integer maxResults, boolean deserializeValues)CountResultDtoqueryHistoricVariableInstancesCount(HistoricVariableInstanceQueryDto query)HistoricVariableInstanceResourcevariableInstanceResource(java.lang.String id)
 
- 
- 
- 
Field Detail- 
PATHstatic final java.lang.String PATH - See Also:
- Constant Field Values
 
 
- 
 - 
Method Detail- 
variableInstanceResource@Path("/{id}") HistoricVariableInstanceResource variableInstanceResource(@PathParam("id") java.lang.String id)
 - 
getHistoricVariableInstances@GET @Produces("application/json") java.util.List<HistoricVariableInstanceDto> getHistoricVariableInstances(@Context javax.ws.rs.core.UriInfo uriInfo, @QueryParam("firstResult") java.lang.Integer firstResult, @QueryParam("maxResults") java.lang.Integer maxResults, @QueryParam("deserializeValues") @DefaultValue("true") boolean deserializeValues)Exposes theHistoricVariableInstanceQueryinterface as a REST service.- Parameters:
- query-
- firstResult-
- maxResults-
- Returns:
 
 - 
queryHistoricVariableInstances@POST @Consumes("application/json") @Produces("application/json") java.util.List<HistoricVariableInstanceDto> queryHistoricVariableInstances(HistoricVariableInstanceQueryDto query, @QueryParam("firstResult") java.lang.Integer firstResult, @QueryParam("maxResults") java.lang.Integer maxResults, @QueryParam("deserializeValues") @DefaultValue("true") boolean deserializeValues)- Parameters:
- query-
- firstResult-
- maxResults-
- Returns:
 
 - 
getHistoricVariableInstancesCount@GET @Path("/count") @Produces("application/json") CountResultDto getHistoricVariableInstancesCount(@Context javax.ws.rs.core.UriInfo uriInfo)
 - 
queryHistoricVariableInstancesCount@POST @Path("/count") @Consumes("application/json") @Produces("application/json") CountResultDto queryHistoricVariableInstancesCount(HistoricVariableInstanceQueryDto query)
 
- 
 
-