Class Process
- All Implemented Interfaces:
HasHandlers
,HasFinishedHandlers
,HasTraceElementHandlers
- Direct Known Subclasses:
Tour
- user interactions
- calls to DataSources (hence: any database or web service)
- arbitrary code
- other Processes
state
across the different tasks that are executed. This allows you to maintain context as you
walk a user through a multi-step business process in your application, which may involve
multiple operations on multiple entities. Each Task that executes can use the Process state
as inputs, and can output a result which is stored in the Process state - see
TaskIO
.
A Process can have multiple branches, choosing the next Task to execute based on
Criteria
- see DecisionTask
and MultiDecisionTask
.
Because a Process may return to a previous Task in various situations, the data model of a
Process is strictly speaking a graph (a set of nodes connected by arbitary
interlinks). However, most processes have sequences of several tasks in a row, and the
definition format allows these to be represented as simple Arrays called "sequences",
specified via sequences
. This reduces the need to
manually specify IDs and
interlinks for Tasks that simply proceed to the next task in a sequence.
Processes follow all the standard rules for encoding as ComponentXML
, however,
note that the <Process> tag allows any kind of ProcessElement
(tasks,
decisions
and sequences) to appear as a direct subelement of the <Process> tag without the need
for an intervening <elements> or <sequences> tag. The example below
demonstrates this shorthand format.
<Process ID="processId"> <ServiceTask ID="serviceTaskId" nextElement="sequenceId" ..> <inputFieldList> <value>order.countryName</value> </inputFieldList> <outputFieldList> <value>order.countryName</value> <value>order.continent</value> <outputFieldList> </ServiceTask> <sequence ID="sequenceId" > <StateTask ../> <StateTask ../> <StateTask ../> <StateTask nextElement="userTaskId" ../> </sequence> <UserTask ID="userTaskId" ../> ... </Process>NOTE: you must load the standard DataBinding module before you can use
Process
.-
Field Summary
Fields inherited from class com.smartgwt.client.core.BaseClass
config, configOnly, factoryCreated, factoryProperties, id, scClassName
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionaddFinishedHandler
(FinishedHandler handler) Add a finished handler.Add a traceElement handler.create()
String[]
Returns a list of unique global IDs that are referenced by this process.Identifier of canvas where UI elements created by usinginline view
property should be added using addMember.WhendefaultWaitFor
or taskwaitFor
are set to "duration", how long should the wait be before starting the task? A task can override the default value with taskwaitDuration
.Condition to wait for before each task is executed.getElement
(String ID) Retrieve aProcessElement
by its IDElements involved in this Process.getJsObj()
Returns the task output of the last task executed.getLastTaskOutput
(String taskType) Returns the task output of the last task executed.Enable mock mode on the workflow? By default, this setting does nothing but is available for individual tasks to trigger special action.static Process
getOrCreateRef
(JavaScriptObject jsObj) static Process
getProcess
(String processId) Get a Process instance by its ID.Returns the process description as HTML.getProcessElements
(String attribute) Canvas.ID
of the component that manages "rule context" for which this process participates.Sequences of ProcessElements.getState()
Current state of a process.getStateVariable
(String stateVariablePath) Returns a variable value from theprocess state
.Context object to be passed toProcess.traceElement()
during process execution.If wizard is set then current workflow will be handled as wizard.boolean
static void
loadProcess
(String processId, ProcessCallback callback) protected void
onInit()
void
void
reset()
Reset process to its initial state, so process can be started again.void
Reset process to its initial state, so process can be started again.setAttribute
(String attribute, ProcessElement[] value, boolean allowPostCreate) void
setConfig
(JavaScriptObject jsObj) setContainerId
(String containerId) Identifier of canvas where UI elements created by usinginline view
property should be added using addMember.setDefaultWaitDuration
(Integer defaultWaitDuration) WhendefaultWaitFor
or taskwaitFor
are set to "duration", how long should the wait be before starting the task? A task can override the default value with taskwaitDuration
.setDefaultWaitFor
(WaitForType defaultWaitFor) Condition to wait for before each task is executed.setElements
(ProcessElement... elements) Elements involved in this Process.void
setMockMode
(Boolean mockMode) Enable mock mode on the workflow? By default, this setting does nothing but is available for individual tasks to trigger special action.void
Sets the task ID of the next task to execute after the current task finishes.void
setNextElement
(String nextElement) Sets the task ID of the next task to execute after the current task finishes.setRuleScope
(String ruleScope) Canvas.ID
of the component that manages "rule context" for which this process participates.setSequences
(ProcessSequence... sequences) Sequences of ProcessElements.void
setStartElement
(ProcessElement startElement) setStartElement
(String startElement) Current state of a process.void
setStateVariable
(String stateVariablePath, Object value) Sets aprocess state
variable for later reference withgetStateVariable()
or more commonly with aTaskInputExpression
property.void
setTaskOutput
(ProcessElement task, Object value) Sets the task output oftask
in theprocess state
so it can be used by later tasks withgetLastTaskOutput()
or more commonly with aTaskInputExpression
property.setTraceContext
(Map traceContext) Context object to be passed toProcess.traceElement()
during process execution.If wizard is set then current workflow will be handled as wizard.void
start()
Starts this task by executing thestartElement
.Methods inherited from class com.smartgwt.client.core.BaseClass
addDynamicProperty, addDynamicProperty, addDynamicProperty, addDynamicProperty, applyFactoryProperties, asSGWTComponent, clearDynamicProperty, createJsObj, destroy, doAddHandler, doInit, error, error, errorIfNotCreated, fireEvent, getAttribute, getAttributeAsBoolean, getAttributeAsDate, getAttributeAsDouble, getAttributeAsElement, getAttributeAsFloat, getAttributeAsInt, getAttributeAsJavaScriptObject, getAttributeAsMap, getAttributeAsString, getAttributeAsStringArray, getClassName, getConfig, getHandlerCount, getID, getRef, getScClassName, getTestInstance, hasAutoAssignedID, hasDynamicProperty, internalSetID, internalSetID, isConfigOnly, isFactoryCreated, onBind, registerID, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setConfigOnly, setFactoryCreated, setID, setProperty, setProperty, setProperty, setProperty, setScClassName
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.google.gwt.event.shared.HasHandlers
fireEvent
-
Constructor Details
-
Process
public Process() -
Process
-
-
Method Details
-
getOrCreateRef
-
setJavaScriptObject
- Overrides:
setJavaScriptObject
in classBaseClass
-
create
-
isCreated
public boolean isCreated() -
getJsObj
-
getOrCreateJsObj
- Overrides:
getOrCreateJsObj
in classBaseClass
-
setContainerId
Identifier of canvas where UI elements created by usinginline view
property should be added using addMember. -
getContainerId
Identifier of canvas where UI elements created by usinginline view
property should be added using addMember.- Returns:
- Current containerId value. Default value is null
- See Also:
-
setDefaultWaitDuration
WhendefaultWaitFor
or taskwaitFor
are set to "duration", how long should the wait be before starting the task? A task can override the default value with taskwaitDuration
.- Parameters:
defaultWaitDuration
- New defaultWaitDuration value. Default value is "300"- Returns:
Process
instance, for chaining setter calls- Throws:
IllegalStateException
- this property cannot be changed after the underlying component has been created
-
getDefaultWaitDuration
WhendefaultWaitFor
or taskwaitFor
are set to "duration", how long should the wait be before starting the task? A task can override the default value with taskwaitDuration
.- Returns:
- Current defaultWaitDuration value. Default value is "300"
-
setDefaultWaitFor
Condition to wait for before each task is executed. TaskwaitFor
can be specified for individual tasks to override this default.For a value of "duration", the delay time is set by
defaultWaitDuration
and can be overridden by a taskwaitDuration
.Note that if
defaultWaitFor
is set to "systemDone" and a task overrides it withwaitFor
"locator", the default "systemDone" is not performed. To apply both, as might be desired, use taskwaitFor
"locatorAndSystemDone".A
defaultWaitFor
value of "locator" or "locatorAndSystemDone" is not valid.- Parameters:
defaultWaitFor
- New defaultWaitFor value. Default value is null- Returns:
Process
instance, for chaining setter calls- Throws:
IllegalStateException
- this property cannot be changed after the underlying component has been created
-
getDefaultWaitFor
Condition to wait for before each task is executed. TaskwaitFor
can be specified for individual tasks to override this default.For a value of "duration", the delay time is set by
defaultWaitDuration
and can be overridden by a taskwaitDuration
.Note that if
defaultWaitFor
is set to "systemDone" and a task overrides it withwaitFor
"locator", the default "systemDone" is not performed. To apply both, as might be desired, use taskwaitFor
"locatorAndSystemDone".A
defaultWaitFor
value of "locator" or "locatorAndSystemDone" is not valid.- Returns:
- Current defaultWaitFor value. Default value is null
-
setElements
Elements involved in this Process. You can also group elements intosequences
to reduce the need to explicitly define IDs for elements and interlink them.- Parameters:
elements
- New elements value. Default value is null- Returns:
Process
instance, for chaining setter calls- Throws:
IllegalStateException
- this property cannot be changed after the underlying component has been created
-
setMockMode
Enable mock mode on the workflow? By default, this setting does nothing but is available for individual tasks to trigger special action. For example, a task that would normally fail outside of its target environment can take an alternative action during testing.mockMode can also be enabled or disabled for an individual task with
ProcessElement.mockMode
.- Parameters:
mockMode
- New mockMode value. Default value is null- Returns:
Process
instance, for chaining setter calls
-
getMockMode
Enable mock mode on the workflow? By default, this setting does nothing but is available for individual tasks to trigger special action. For example, a task that would normally fail outside of its target environment can take an alternative action during testing.mockMode can also be enabled or disabled for an individual task with
ProcessElement.mockMode
.- Returns:
- Current mockMode value. Default value is null
-
setRuleScope
Canvas.ID
of the component that manages "rule context" for which this process participates. The rule context can be used intaskInputExpression
.- Overrides:
setRuleScope
in classBaseClass
- Parameters:
ruleScope
- New ruleScope value. Default value is null- Returns:
Process
instance, for chaining setter calls- Throws:
IllegalStateException
- this property cannot be changed after the underlying component has been created- See Also:
-
getRuleScope
Canvas.ID
of the component that manages "rule context" for which this process participates. The rule context can be used intaskInputExpression
.- Overrides:
getRuleScope
in classBaseClass
- Returns:
- Current ruleScope value. Default value is null
- See Also:
-
setSequences
Sequences of ProcessElements. By defining a sequences of elements you can make theProcessElement.nextElement
implicit.Example of using sequences:
Process process = new Process(); process.setStartElement("firstSequence"); ProcessSequence innerSequence = new ProcessSequence(incTask, add2Task, incTask); process.setSequences( new ProcessSequence("firstSequence", serviceTask, multiDecisionTask), new ProcessSequence("errorFlow", failureTask, userNotifyTask) ); // standalone process elements not part of sequences process.setElements(new ServiceTask(){...}); Record state = new Record(); state.setAttribute("someField", "someValue"); process.setState(state); process.start();
- Parameters:
sequences
- New sequences value. Default value is null- Returns:
Process
instance, for chaining setter calls- Throws:
IllegalStateException
- this property cannot be changed after the underlying component has been created
-
getSequences
Sequences of ProcessElements. By defining a sequences of elements you can make theProcessElement.nextElement
implicit.Example of using sequences:
Process process = new Process(); process.setStartElement("firstSequence"); ProcessSequence innerSequence = new ProcessSequence(incTask, add2Task, incTask); process.setSequences( new ProcessSequence("firstSequence", serviceTask, multiDecisionTask), new ProcessSequence("errorFlow", failureTask, userNotifyTask) ); // standalone process elements not part of sequences process.setElements(new ServiceTask(){...}); Record state = new Record(); state.setAttribute("someField", "someValue"); process.setState(state); process.start();
- Returns:
- Current sequences value. Default value is null
-
setStartElement
The ID of either asequence
or anelement
which should be the starting point of the process. If not specified, the first sequence is chosen, or if there are no sequences, the first element. - log a warning and do nothing if there are neither sequences or elements- Parameters:
startElement
- New startElement value. Default value is null- Returns:
Process
instance, for chaining setter calls- Throws:
IllegalStateException
- this property cannot be changed after the underlying component has been created
-
getStartElement
The ID of either asequence
or anelement
which should be the starting point of the process. If not specified, the first sequence is chosen, or if there are no sequences, the first element. - log a warning and do nothing if there are neither sequences or elements- Returns:
- Current startElement value. Default value is null
-
setState
Current state of a process. As with Records in general, any field of a Record may contain a nested Record or Array of Records, so the process state is essentially a hierarchical data structure.Transient state
In addition to the explicit process state there is a "transient state." The transient state represents the complete output of each of the last tasks of each type within the current process execution. This allows easy reference to the previous task output withtaskInputExpressions
.
If this method is called after the component has been drawn/initialized: Set process state for current process- Parameters:
state
- the new process state. Default value is null- Returns:
Process
instance, for chaining setter calls
-
getState
Current state of a process. As with Records in general, any field of a Record may contain a nested Record or Array of Records, so the process state is essentially a hierarchical data structure.Transient state
In addition to the explicit process state there is a "transient state." The transient state represents the complete output of each of the last tasks of each type within the current process execution. This allows easy reference to the previous task output withtaskInputExpressions
.- Returns:
- Current state value. Default value is null
-
setTraceContext
Context object to be passed toProcess.traceElement()
during process execution.Note : This is an advanced setting
- Parameters:
traceContext
- New traceContext value. Default value is null- Returns:
Process
instance, for chaining setter calls
-
getTraceContext
Context object to be passed toProcess.traceElement()
during process execution.- Returns:
- Current traceContext value. Default value is null
-
setWizard
If wizard is set then current workflow will be handled as wizard. Every userTask will hide associated form after user finished step.- Parameters:
wizard
- New wizard value. Default value is false- Returns:
Process
instance, for chaining setter calls- Throws:
IllegalStateException
- this property cannot be changed after the underlying component has been created
-
getWizard
If wizard is set then current workflow will be handled as wizard. Every userTask will hide associated form after user finished step.- Returns:
- Current wizard value. Default value is false
-
addFinishedHandler
Add a finished handler.StringMethod called when a process completes, meaning the process executes a ProcessElement with no next element.
- Specified by:
addFinishedHandler
in interfaceHasFinishedHandlers
- Parameters:
handler
- the finished handler- Returns:
HandlerRegistration
used to remove this handler
-
getComponentReferences
Returns a list of unique global IDs that are referenced by this process.List is assembled by calling
ProcessElement.getComponentReferences()
for each task in the workflow and filtering the list to the unique component IDs.- Returns:
- array of component IDs that are referenced by this process
-
getElement
Retrieve aProcessElement
by its ID- Parameters:
ID
- id of the process element- Returns:
- the indicated process element, or null if no such element exists
-
getLastTaskOutput
Returns the task output of the last task executed. More commonly aTaskInputExpression
property is used (seeProcessElement.getDynamicValue()
).- Returns:
- the last task output or null if none is found
-
getLastTaskOutput
Returns the task output of the last task executed. More commonly aTaskInputExpression
property is used (seeProcessElement.getDynamicValue()
).- Parameters:
taskType
- the optional task type to lookup in last task output- Returns:
- the last task output or null if none is found
-
getProcessDescription
Returns the process description as HTML.- Returns:
- the process description as HTML
-
getStateVariable
Returns a variable value from theprocess state
. Values can be written into process state bysetStateVariable()
, settingProcessElement.bindOutput
, or various task output settings (SeeTaskIO
.)- Parameters:
stateVariablePath
- path to variable in process state to set. segments are separated by a decimal point (.)- Returns:
- the value found at the path
-
passThruTaskOutput
Takes thelast task output
and sets it as thetask output
for thetask
.This method is not just a shortcut to set output of a pass-thru task but it also records the correct schema of the passed-thru output so it can be quickly looked up.
- Parameters:
task
- the workflow task setting the output (i.e. this)
-
reset
public void reset()Reset process to its initial state, so process can be started again. -
reset
Reset process to its initial state, so process can be started again.- Parameters:
state
- new state of the process
-
setNextElement
public void setNextElement()Sets the task ID of the next task to execute after the current task finishes. If the task is not found ornull
is passed as the nextElement, the current process will be terminated instead. -
setNextElement
Sets the task ID of the next task to execute after the current task finishes. If the task is not found ornull
is passed as the nextElement, the current process will be terminated instead.- Parameters:
nextElement
- ID of the next task execute or null to terminate process
-
setStateVariable
Sets aprocess state
variable for later reference withgetStateVariable()
or more commonly with aTaskInputExpression
property.- Parameters:
stateVariablePath
- path to variable in process state to set. segments are separated by a decimal point (.)value
- the value to save
-
setTaskOutput
Sets the task output oftask
in theprocess state
so it can be used by later tasks withgetLastTaskOutput()
or more commonly with aTaskInputExpression
property.If the task sets
bindOutput
the output value is also written into thatprocess state
variable.- Parameters:
task
- the workflow task setting the output (i.e. this)value
- the output value for task
-
start
public void start()Starts this task by executing thestartElement
. Also used by asynchronous tasks to restart the workflow. -
addTraceElementHandler
Add a traceElement handler.StringMethod called during process execution before each task element is processed.
- Specified by:
addTraceElementHandler
in interfaceHasTraceElementHandlers
- Parameters:
handler
- the traceElement handler- Returns:
HandlerRegistration
used to remove this handler
-
getProcess
Get a Process instance by its ID.Each process instance created that has an
ID
is cached for later lookup by that ID. If two processes have the same ID the last one is cached, overwriting the first. Note that the process instances are not affected - only the cache reference.- Parameters:
processId
- process ID to retrieve. SeeIdentifier
- Returns:
- the process, or null if not found
- See Also:
-
onInit
protected void onInit() -
setAttribute
-
setConfig
-
loadProcess
-
getProcessElements
-
getElements
Elements involved in this Process. You can also group elements intosequences
to reduce the need to explicitly define IDs for elements and interlink them.- Returns:
- ProcessElement
-
setStartElement
- Throws:
IllegalStateException
- See Also:
-