public class Process extends Task
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 XORGateway
and DecisionGateway
.
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.
NOTE: you must load the Workflow
module Optional Modules
before you can use Process.
Modifier and Type | Class and Description |
---|---|
static interface |
Process.ProcessCallback |
config, id, scClassName
Constructor and Description |
---|
Process() |
Process(com.google.gwt.core.client.JavaScriptObject jsObj) |
Modifier and Type | Method and Description |
---|---|
com.google.gwt.core.client.JavaScriptObject |
create() |
void |
finished(Record state)
StringMethod called when a process completes, meaning the process executes a ProcessElement with no next element.
|
java.lang.String |
getContainerId()
Identifier of canvas where should be added UI elements created by using
inline view property. |
ProcessElement |
getElement(java.lang.String ID)
Retrieve a
ProcessElement by it's ID |
ProcessElement[] |
getElements()
Elements involved in this Process.
|
static Process |
getOrCreateRef(com.google.gwt.core.client.JavaScriptObject jsObj) |
static Process |
getProcess(java.lang.String processId)
Get a Process instance by it's ID.
|
ProcessSequence[] |
getSequences()
Sequences of ProcessElements.
|
Record |
getSetState()
Set new process state.
|
java.lang.String |
getStartElement()
|
Record |
getState()
Current state of a process.
|
java.lang.Boolean |
getWizard()
If wizard is set then current workflow will be handled as wizard.
|
static void |
loadProcess(java.lang.String processId,
Process.ProcessCallback callback) |
protected void |
onInit_Process() |
protected void |
onInit() |
void |
reset(Record state)
Reset process to it's initial state, so process can be started again.
|
void |
setConfig(com.google.gwt.core.client.JavaScriptObject jsObj) |
void |
setContainerId(java.lang.String containerId)
Identifier of canvas where should be added UI elements created by using
inline view property. |
void |
setElements(ProcessElement... elements)
Elements involved in this Process.
|
void |
setJavaScriptObject(com.google.gwt.core.client.JavaScriptObject jsObj) |
void |
setSequences(ProcessSequence... sequences)
Sequences of ProcessElements.
|
void |
setSetState(Record setState)
Set new process state.
|
void |
setStartElement(ProcessElement startElement) |
void |
setStartElement(java.lang.String startElement)
|
void |
setState(Record state)
Current state of a process.
|
void |
setWizard(java.lang.Boolean wizard)
If wizard is set then current workflow will be handled as wizard.
|
void |
start()
Starts this task by executing the
startElement . |
getInputField, getInputFields, getOutputField, getOutputFields, setInputField, setInputFields, setOutputField, setOutputFields
convertToJavaScriptArray, getID, getJsObj, getNextElement, getOrCreateJsObj, getProcessElements, isCreated, setAttribute, setID, setNextElement
asSGWTComponent, destroy, doAddHandler, doInit, error, error, errorIfNotCreated, fireEvent, getAttribute, getAttributeAsBoolean, getAttributeAsDate, getAttributeAsDouble, getAttributeAsElement, getAttributeAsFloat, getAttributeAsInt, getAttributeAsJavaScriptObject, getAttributeAsMap, getAttributeAsString, getAttributeAsStringArray, getClassName, getConfig, getHandlerCount, getRef, getScClassName, internalSetID, internalSetID, onBind, registerID, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setProperty, setProperty, setProperty, setProperty, setScClassName
public Process()
public Process(com.google.gwt.core.client.JavaScriptObject jsObj)
public static Process getOrCreateRef(com.google.gwt.core.client.JavaScriptObject jsObj)
public void setJavaScriptObject(com.google.gwt.core.client.JavaScriptObject jsObj)
setJavaScriptObject
in class Task
public void setContainerId(java.lang.String containerId)
inline view
property.containerId
- . See String
. Default value is nullpublic java.lang.String getContainerId()
inline view
property.String
public void setSequences(ProcessSequence... sequences) throws java.lang.IllegalStateException
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, decisionGateway), 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();
sequences
- sequences Default value is nulljava.lang.IllegalStateException
- this property cannot be changed after the underlying component has been createdpublic ProcessSequence[] getSequences()
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, decisionGateway), 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();
public void setSetState(Record setState)
setState
- setState Default value is nullpublic Record getSetState()
public void setStartElement(java.lang.String startElement) throws java.lang.IllegalStateException
sequence
or an element
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 elementsstartElement
- . See String
. Default value is nulljava.lang.IllegalStateException
- this property cannot be changed after the underlying component has been createdpublic java.lang.String getStartElement()
sequence
or an element
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 elementsString
public void setState(Record state)
state
- the new process state. Default value is nullpublic Record getState()
public void setWizard(java.lang.Boolean wizard) throws java.lang.IllegalStateException
wizard
- wizard Default value is falsejava.lang.IllegalStateException
- this property cannot be changed after the underlying component has been createdpublic java.lang.Boolean getWizard()
public void finished(Record state)
state
- the final process statepublic ProcessElement getElement(java.lang.String ID)
ProcessElement
by it's IDID
- id of the process elementpublic void reset(Record state)
state
- new state of the processpublic void start()
startElement
.public static Process getProcess(java.lang.String processId)
Process.loadProcess
.processId
- process IDs to retrievepublic void setConfig(com.google.gwt.core.client.JavaScriptObject jsObj)
public static void loadProcess(java.lang.String processId, Process.ProcessCallback callback)
public ProcessElement[] getElements()
sequences
to reduce the need to explicitly define IDs for
elements and interlink them.public void setElements(ProcessElement... elements) throws java.lang.IllegalStateException
sequences
to reduce the need to explicitly define IDs for
elements and interlink them.elements
- elements Default value is nulljava.lang.IllegalStateException
- this property cannot be changed after the underlying component has been createdpublic void setStartElement(ProcessElement startElement) throws java.lang.IllegalStateException
java.lang.IllegalStateException
setStartElement(String)
protected void onInit_Process()