Uses of Class
org.activiti.engine.impl.history.HistoryLevel
-
Packages that use HistoryLevel Package Description org.activiti.engine Public API of the Activiti 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
org.activiti.engine.IdentityService: Used for managingorg.activiti.engine.identity.Users,org.activiti.engine.identity.Groups and the relations between them
ManagementService: Exposes engine admin and maintenance operations, which have no relation to the runtime exection of business processes
HistoryService: Exposes information about ongoing and past process instances.
org.activiti.engine.FormService: Access to form data and rendered forms for starting new process instances and completing tasks.org.activiti.engine.impl.history -
-
Uses of HistoryLevel in org.activiti.engine
Fields in org.activiti.engine declared as HistoryLevel Modifier and Type Field Description protected HistoryLevelProcessEngineConfiguration. historyLevelMethods in org.activiti.engine that return HistoryLevel Modifier and Type Method Description HistoryLevelProcessEngineConfiguration. getHistoryLevel()Methods in org.activiti.engine with parameters of type HistoryLevel Modifier and Type Method Description ProcessEngineConfigurationProcessEngineConfiguration. setHistoryLevel(HistoryLevel historyLevel) -
Uses of HistoryLevel in org.activiti.engine.impl.history
Methods in org.activiti.engine.impl.history that return HistoryLevel Modifier and Type Method Description HistoryLevelDefaultHistoryManager. getHistoryLevel()static HistoryLevelHistoryLevel. getHistoryLevelForKey(java.lang.String key)static HistoryLevelHistoryLevel. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static HistoryLevel[]HistoryLevel. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.activiti.engine.impl.history with parameters of type HistoryLevel Modifier and Type Method Description booleanHistoryLevel. isAtLeast(HistoryLevel level)Checks if the given level is the same as, or higher in order than the level this method is executed on.booleanDefaultHistoryManager. isHistoryLevelAtLeast(HistoryLevel level)booleanHistoryManager. isHistoryLevelAtLeast(HistoryLevel level)voidDefaultHistoryManager. setHistoryLevel(HistoryLevel historyLevel)Constructors in org.activiti.engine.impl.history with parameters of type HistoryLevel Constructor Description DefaultHistoryManager(ProcessEngineConfigurationImpl processEngineConfiguration, HistoryLevel historyLevel)
-