Uses of Interface
org.flowable.engine.history.HistoricProcessInstance
-
Packages that use HistoricProcessInstance Package Description org.flowable.engine Public API of the Flowable engine.
Typical usage of the API starts by the creation of aProcessEngineConfiguration(typically based on a configuration file), from which aProcessEnginecan be obtained.
Through the services obtained from such aProcessEngine, BPM and workflow operation can be executed:
RepositoryService: ManagesDeployments.
RuntimeService: For starting and searchingProcessInstances.
TaskService: Exposes operations to manage human (standalone) tasks, such as claiming, completing and assigning tasks.
IdentityService: Used for managing users, groups and the relations between them.
ManagementService: Exposes engine administration and maintenance operations, which have no relation to the runtime exection of business processes.
HistoryService: Exposes information about ongoing and past process instances.
FormService: Access to form data and rendered forms for starting new process instances and completing tasks.org.flowable.engine.impl API implementation classes, which shouldn't directly be used by end-users.org.flowable.engine.impl.persistence.entity org.flowable.engine.impl.persistence.entity.data org.flowable.engine.impl.persistence.entity.data.impl org.flowable.engine.interceptor -
-
Uses of HistoricProcessInstance in org.flowable.engine
Methods in org.flowable.engine with parameters of type HistoricProcessInstance Modifier and Type Method Description voidInternalProcessLocalizationManager. localize(HistoricProcessInstance historicProcessInstance, String locale, boolean withLocalizationFallback) -
Uses of HistoricProcessInstance in org.flowable.engine.impl
Fields in org.flowable.engine.impl declared as HistoricProcessInstance Modifier and Type Field Description protected HistoricProcessInstanceProcessInstanceHistoryLogImpl. historicProcessInstanceMethods in org.flowable.engine.impl that return types with arguments of type HistoricProcessInstance Modifier and Type Method Description List<HistoricProcessInstance>HistoricProcessInstanceQueryImpl. executeList(CommandContext commandContext)List<HistoricProcessInstance>NativeHistoricProcessInstanceQueryImpl. executeList(CommandContext commandContext, Map<String,Object> parameterMap)Methods in org.flowable.engine.impl with parameters of type HistoricProcessInstance Modifier and Type Method Description voidDefaultProcessLocalizationManager. localize(HistoricProcessInstance historicProcessInstance, String locale, boolean withLocalizationFallback)Method parameters in org.flowable.engine.impl with type arguments of type HistoricProcessInstance Modifier and Type Method Description protected voidHistoricProcessInstanceQueryImpl. addCachedVariableForQueryById(CommandContext commandContext, List<HistoricProcessInstance> results)Constructors in org.flowable.engine.impl with parameters of type HistoricProcessInstance Constructor Description ProcessInstanceHistoryLogImpl(HistoricProcessInstance historicProcessInstance) -
Uses of HistoricProcessInstance in org.flowable.engine.impl.persistence.entity
Subinterfaces of HistoricProcessInstance in org.flowable.engine.impl.persistence.entity Modifier and Type Interface Description interfaceHistoricProcessInstanceEntityClasses in org.flowable.engine.impl.persistence.entity that implement HistoricProcessInstance Modifier and Type Class Description classHistoricProcessInstanceEntityImpl -
Uses of HistoricProcessInstance in org.flowable.engine.impl.persistence.entity.data
Methods in org.flowable.engine.impl.persistence.entity.data that return types with arguments of type HistoricProcessInstance Modifier and Type Method Description List<HistoricProcessInstance>HistoricProcessInstanceDataManager. findHistoricProcessInstancesAndVariablesByQueryCriteria(HistoricProcessInstanceQueryImpl historicProcessInstanceQuery)List<HistoricProcessInstance>HistoricProcessInstanceDataManager. findHistoricProcessInstancesByNativeQuery(Map<String,Object> parameterMap)List<HistoricProcessInstance>HistoricProcessInstanceDataManager. findHistoricProcessInstancesByQueryCriteria(HistoricProcessInstanceQueryImpl historicProcessInstanceQuery)List<HistoricProcessInstance>HistoricProcessInstanceDataManager. findHistoricProcessInstancesBySuperProcessInstanceId(String superProcessInstanceId) -
Uses of HistoricProcessInstance in org.flowable.engine.impl.persistence.entity.data.impl
Methods in org.flowable.engine.impl.persistence.entity.data.impl that return types with arguments of type HistoricProcessInstance Modifier and Type Method Description List<HistoricProcessInstance>MybatisHistoricProcessInstanceDataManager. findHistoricProcessInstancesAndVariablesByQueryCriteria(HistoricProcessInstanceQueryImpl historicProcessInstanceQuery)List<HistoricProcessInstance>MybatisHistoricProcessInstanceDataManager. findHistoricProcessInstancesByNativeQuery(Map<String,Object> parameterMap)List<HistoricProcessInstance>MybatisHistoricProcessInstanceDataManager. findHistoricProcessInstancesByQueryCriteria(HistoricProcessInstanceQueryImpl historicProcessInstanceQuery)List<HistoricProcessInstance>MybatisHistoricProcessInstanceDataManager. findHistoricProcessInstancesBySuperProcessInstanceId(String superProcessInstanceId) -
Uses of HistoricProcessInstance in org.flowable.engine.interceptor
Method parameters in org.flowable.engine.interceptor with type arguments of type HistoricProcessInstance Modifier and Type Method Description voidHistoricProcessInstanceQueryInterceptor. afterHistoricProcessInstanceQueryExecute(HistoricProcessInstanceQuery processInstanceQuery, List<HistoricProcessInstance> processInstances)
-