congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
org.camunda.bpm.engine.history
Code IndexAdd Tabnine to your IDE (free)

How to use org.camunda.bpm.engine.history

Best Java code snippets using org.camunda.bpm.engine.history (Showing top 20 results out of 315)

origin: camunda/camunda-bpm-platform

private List<HistoricDecisionInstance> executePaginatedQuery(HistoricDecisionInstanceQuery query, Integer firstResult, Integer maxResults) {
 if (firstResult == null) {
  firstResult = 0;
 }
 if (maxResults == null) {
  maxResults = Integer.MAX_VALUE;
 }
 return query.listPage(firstResult, maxResults);
}
origin: camunda/camunda-bpm-platform

private List<HistoricIdentityLinkLog> executePaginatedQuery(HistoricIdentityLinkLogQuery query, Integer firstResult, Integer maxResults) {
 if (firstResult == null) {
  firstResult = 0;
 }
 if (maxResults == null) {
  maxResults = Integer.MAX_VALUE;
 }
 return query.listPage(firstResult, maxResults);
}
origin: camunda/camunda-bpm-platform

private List<HistoricTaskInstance> executePaginatedQuery(HistoricTaskInstanceQuery query, Integer firstResult, Integer maxResults) {
 if (firstResult == null) {
  firstResult = 0;
 }
 if (maxResults == null) {
  maxResults = Integer.MAX_VALUE;
 }
 return query.listPage(firstResult, maxResults);
}
origin: camunda/camunda-bpm-platform

private List<HistoricVariableInstance> executePaginatedQuery(HistoricVariableInstanceQuery query, Integer firstResult, Integer maxResults) {
 if (firstResult == null) {
  firstResult = 0;
 }
 if (maxResults == null) {
  maxResults = Integer.MAX_VALUE;
 }
 return query.listPage(firstResult, maxResults);
}
origin: camunda/camunda-bpm-platform

private List<HistoricCaseActivityInstance> executePaginatedQuery(HistoricCaseActivityInstanceQuery query, Integer firstResult, Integer maxResults) {
 if (firstResult == null) {
  firstResult = 0;
 }
 if (maxResults == null) {
  maxResults = Integer.MAX_VALUE;
 }
 return query.listPage(firstResult, maxResults);
}
origin: camunda/camunda-bpm-platform

 @Override
 public String getProperty(HistoricJobLog obj) {
  return obj.getJobId();
 }
});
origin: camunda/camunda-bpm-platform

 @Override
 public Integer getProperty(HistoricJobLog obj) {
  return obj.getJobRetries();
 }
});
origin: camunda/camunda-bpm-platform

 @Override
 public String getProperty(HistoricJobLog obj) {
  return obj.getProcessInstanceId();
 }
});
origin: camunda/camunda-bpm-platform

 @Override
 public String getProperty(HistoricJobLog obj) {
  return obj.getProcessDefinitionId();
 }
});
origin: camunda/camunda-bpm-platform

 @Override
 public String getProperty(HistoricExternalTaskLog obj) {
  return obj.getTopicName();
 }
});
origin: camunda/camunda-bpm-platform

 @Override
 public String getProperty(HistoricExternalTaskLog obj) {
  return obj.getActivityId();
 }
});
origin: camunda/camunda-bpm-platform

 @Override
 public String getProperty(HistoricExternalTaskLog obj) {
  return obj.getExecutionId();
 }
});
origin: camunda/camunda-bpm-platform

 @Override
 public String getProperty(HistoricExternalTaskLog obj) {
  return obj.getProcessInstanceId();
 }
});
origin: camunda/camunda-bpm-platform

 @Override
 public Date getProperty(HistoricJobLog obj) {
  return obj.getJobDueDate();
 }
});
origin: camunda/camunda-bpm-platform

 @Override
 public String getProperty(HistoricJobLog obj) {
  return obj.getActivityId();
 }
});
origin: camunda/camunda-bpm-platform

 @Override
 public String getProperty(HistoricJobLog obj) {
  return obj.getExecutionId();
 }
});
origin: camunda/camunda-bpm-platform

 @Override
 public String getProperty(HistoricExternalTaskLog obj) {
  return obj.getWorkerId();
 }
});
origin: camunda/camunda-bpm-platform

 @Override
 public String getProperty(HistoricExternalTaskLog obj) {
  return obj.getActivityInstanceId();
 }
});
origin: camunda/camunda-bpm-platform

private List<HistoricActivityInstance> executePaginatedQuery(HistoricActivityInstanceQuery query, Integer firstResult, Integer maxResults) {
 if (firstResult == null) {
  firstResult = 0;
 }
 if (maxResults == null) {
  maxResults = Integer.MAX_VALUE;
 }
 return query.listPage(firstResult, maxResults);
}
origin: camunda/camunda-bpm-platform

private List<CleanableHistoricDecisionInstanceReportResult> executePaginatedQuery(CleanableHistoricDecisionInstanceReport query, Integer firstResult, Integer maxResults) {
 if (firstResult == null) {
  firstResult = 0;
 }
 if (maxResults == null) {
  maxResults = Integer.MAX_VALUE;
 }
 return query.listPage(firstResult, maxResults);
}
org.camunda.bpm.engine.history

Most used classes

  • HistoricProcessInstanceQuery
    Allows programmatic querying of HistoricProcessInstances.
  • HistoricActivityInstanceQuery
    Programmatic querying for HistoricActivityInstances.
  • HistoricActivityInstance
    Represents one execution of an activity and it's stored permanent for statistics, audit and other bu
  • HistoricVariableInstance
    A single process variable containing the last value when its process instance has finished. It is on
  • HistoricVariableInstanceQuery
    Programmatic querying for HistoricVariableInstances.
  • HistoricDecisionInstance,
  • HistoricDecisionInstanceQuery,
  • HistoricProcessInstance,
  • HistoricCaseActivityInstanceQuery,
  • HistoricTaskInstanceQuery,
  • HistoricCaseInstance,
  • HistoricCaseInstanceQuery,
  • HistoricDecisionInputInstance,
  • HistoricDecisionOutputInstance,
  • HistoricVariableUpdate,
  • UserOperationLogEntry,
  • UserOperationLogQuery,
  • HistoricCaseActivityInstance,
  • HistoricJobLogQuery
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now