Interface HistoricVariableInstanceRestService

    • Method Detail

      • 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 the HistoricVariableInstanceQuery 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)