-
Notifications
You must be signed in to change notification settings - Fork 39
Glossary
jsyrjala edited this page Sep 6, 2014
·
22 revisions
Workflow is ...
A workflow definition is Java class that contains the implementation of a business process (e.g. credit application process).
A workflow instance is a runtime instance of the business process (e.g. credit application from a certain customer).
A state is ...
State method or state handler method is a method with a specific signature in a workflow definition class. The method contains the functionality that is executed when nFlow executes a state. The state and the corresponding method have same name: e.g state createApplication
is handled by method public NextAction createApplication(StateExecution e)
.
Executor is ...
Dispatcher is ...
Executor group is ...