Package com.aquima.interactions.process
Interface IProcessEngineSettings
- All Superinterfaces:
IIgnoreModeSettings
- All Known Implementing Classes:
DefaultProcessEngineSettings
An interface to specify settings for the process engine
- Since:
- 9.2
- Author:
- m.mahabiersing
-
Method Summary
Modifier and TypeMethodDescriptionboolean
If true, all started tasks will be cancelled during the process engine initializationReturns the limit on the number of results that will be retrieved from the database for the AQ_CaseListReturns the limit on the number of results that will be retrieved from the database for the AQ_WorkListboolean
ignoreUnknownAttributes
(String applicationName) Returns whether attributes which are saved in the process data store and do not exist in the metamodel should be ignored.boolean
ignoreUnknownEntities
(String applicationName) Returns whether entities which are saved in the process data store and do not exist in the metamodel should be ignored.boolean
Indicates whether required tasks should be cancelled when their precondition evaluates becomes false.Methods inherited from interface com.aquima.interactions.process.IIgnoreModeSettings
getIgnoreMode, getIgnoreMode
-
Method Details
-
cancelStartedTasks
boolean cancelStartedTasks()If true, all started tasks will be cancelled during the process engine initialization- Returns:
-
shouldRetainRequiredTasks
boolean shouldRetainRequiredTasks()Indicates whether required tasks should be cancelled when their precondition evaluates becomes false.- Returns:
- true if required tasks should be cancelled once the precondition becomes false, false otherwise
-
getWorkListLimit
Integer getWorkListLimit()Returns the limit on the number of results that will be retrieved from the database for the AQ_WorkList- Returns:
- The limit, may be null
-
getCaseListLimit
Integer getCaseListLimit()Returns the limit on the number of results that will be retrieved from the database for the AQ_CaseList- Returns:
- The limit, may be null
-
ignoreUnknownAttributes
Returns whether attributes which are saved in the process data store and do not exist in the metamodel should be ignored.- Parameters:
applicationName
- the name of the application for which the setting is requested- Returns:
- true if unknown attributes should be ignored, false otherwise.
-
ignoreUnknownEntities
Returns whether entities which are saved in the process data store and do not exist in the metamodel should be ignored.- Parameters:
applicationName
- the name of the application for which the setting is requested- Returns:
- true if unknown entities should be ignored, false otherwise.
-