Interface HistoricVariableInstanceRestService

    • Method Detail

      • getHistoricVariableInstances

        @GET
        @Produces("application/json")
        List<HistoricVariableInstanceDto> getHistoricVariableInstances​(@Context
                                                                       javax.ws.rs.core.UriInfo uriInfo,
                                                                       @QueryParam("firstResult")
                                                                       Integer firstResult,
                                                                       @QueryParam("maxResults")
                                                                       Integer maxResults,
                                                                       @QueryParam("deserializeValues") @DefaultValue("true")
                                                                       boolean deserializeValues)
        Exposes the HistoricVariableInstanceQuery interface as a REST service.
        Parameters:
        query -
        firstResult -
        maxResults -
        Returns:
      • queryHistoricVariableInstances

        @POST
        @Consumes("application/json")
        @Produces("application/json")
        List<HistoricVariableInstanceDto> queryHistoricVariableInstances​(HistoricVariableInstanceQueryDto query,
                                                                         @QueryParam("firstResult")
                                                                         Integer firstResult,
                                                                         @QueryParam("maxResults")
                                                                         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)