Package org.camunda.bpm.engine.rest.dto.history

Examples of org.camunda.bpm.engine.rest.dto.history.HistoricVariableInstanceQueryDto


  }

  @Override
  public List<HistoricVariableInstanceDto> getHistoricVariableInstances(UriInfo uriInfo, Integer firstResult,
      Integer maxResults, boolean deserializeObjectValues) {
    HistoricVariableInstanceQueryDto queryDto = new HistoricVariableInstanceQueryDto(objectMapper, uriInfo.getQueryParameters());
    return queryHistoricVariableInstances(queryDto, firstResult, maxResults, deserializeObjectValues);
  }
View Full Code Here


    return query.listPage(firstResult, maxResults);
  }

  @Override
  public CountResultDto getHistoricVariableInstancesCount(UriInfo uriInfo) {
    HistoricVariableInstanceQueryDto queryDto = new HistoricVariableInstanceQueryDto(objectMapper, uriInfo.getQueryParameters());
    return queryHistoricVariableInstancesCount(queryDto);
  }
View Full Code Here

TOP

Related Classes of org.camunda.bpm.engine.rest.dto.history.HistoricVariableInstanceQueryDto

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.