Interface HistoricVariableInstanceRestService
-
- All Known Implementing Classes:
HistoricVariableInstanceRestServiceImpl
@Path("/variable-instance") @Produces("application/json") public interface HistoricVariableInstanceRestService
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
PATH
-
Method Summary
All 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 theHistoricVariableInstanceQuery
interface as a REST service.CountResultDto
getHistoricVariableInstancesCount(javax.ws.rs.core.UriInfo uriInfo)
java.util.List<HistoricVariableInstanceDto>
queryHistoricVariableInstances(HistoricVariableInstanceQueryDto query, java.lang.Integer firstResult, java.lang.Integer maxResults, boolean deserializeValues)
CountResultDto
queryHistoricVariableInstancesCount(HistoricVariableInstanceQueryDto query)
HistoricVariableInstanceResource
variableInstanceResource(java.lang.String id)
-
-
-
Field Detail
-
PATH
static 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 theHistoricVariableInstanceQuery
interface 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)
-
-