Examples of HistoricVariableInstanceQueryDto


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

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

    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
Copyright © 2018 www.massapi.com. 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.