public interface Application
Entry point for accessing business automation components such as processes,
rules, decisions, etc.
It should be considered as singleton kind of object that can be safely used across entire application.
-
Method Summary
Modifier and TypeMethodDescriptiondefault CaseDefinitionscases()Returns cases (case definitions) found in the application otherwise nullconfig()Returns configuration of the applicationdefault DecisionModelsReturns decision models found in the application otherwise nulldefault ProcessesReturns processes found in the application otherwise nullReturns unit of work manager that allows to control execution within the application
-
Method Details
-
config
Config config()Returns configuration of the application- Returns:
- current configuration
-
processes
Returns processes found in the application otherwise null- Returns:
- processes information or null of non found
-
decisionModels
Returns decision models found in the application otherwise null- Returns:
- decision models or null if not found
-
cases
Returns cases (case definitions) found in the application otherwise null- Returns:
- cases (case definitions) or null if not found
-
unitOfWorkManager
UnitOfWorkManager unitOfWorkManager()Returns unit of work manager that allows to control execution within the application- Returns:
- non null unit of work manager
-