public class Task extends ProcessElement
Process
and for all Task types that can
be involved in a Process, such as a ServiceTask
.config, configOnly, factoryCreated, factoryProperties, id, scClassName
Constructor and Description |
---|
Task() |
Task(com.google.gwt.core.client.JavaScriptObject jsObj) |
Modifier and Type | Method and Description |
---|---|
com.google.gwt.core.client.JavaScriptObject |
create() |
java.lang.String |
getInputField()
Field in the
process state which is provided as input data to
this task. |
java.lang.String[] |
getInputFieldList()
List of multiple fields from the
process state which are
provided as input data to this task. |
static Task |
getOrCreateRef(com.google.gwt.core.client.JavaScriptObject jsObj) |
java.lang.String |
getOutputField()
Field in the
process state which this task writes outputs to. |
java.lang.String[] |
getOutputFieldList()
List of multiple fields from the
process state which this
task will write to. |
void |
setInputField(java.lang.String inputField)
Field in the
process state which is provided as input data to
this task. |
void |
setInputFieldList(java.lang.String... inputFieldList)
List of multiple fields from the
process state which are
provided as input data to this task. |
void |
setOutputField(java.lang.String outputField)
Field in the
process state which this task writes outputs to. |
void |
setOutputFieldList(java.lang.String... outputFieldList)
List of multiple fields from the
process state which this
task will write to. |
convertToJavaScriptArray, getID, getJsObj, getNextElement, getOrCreateJsObj, getProcessElements, isCreated, onInit, setAttribute, setID, setJavaScriptObject, setNextElement
applyFactoryProperties, asSGWTComponent, createJsObj, destroy, doAddHandler, doInit, error, error, errorIfNotCreated, fireEvent, getAttribute, getAttributeAsBoolean, getAttributeAsDate, getAttributeAsDouble, getAttributeAsElement, getAttributeAsFloat, getAttributeAsInt, getAttributeAsJavaScriptObject, getAttributeAsMap, getAttributeAsString, getAttributeAsStringArray, getClassName, getConfig, getHandlerCount, getRef, getScClassName, getTestInstance, hasAutoAssignedID, 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, setConfig, setConfigOnly, setFactoryCreated, setProperty, setProperty, setProperty, setProperty, setScClassName
public Task()
public Task(com.google.gwt.core.client.JavaScriptObject jsObj)
public static Task getOrCreateRef(com.google.gwt.core.client.JavaScriptObject jsObj)
public com.google.gwt.core.client.JavaScriptObject create()
create
in class ProcessElement
public void setInputField(java.lang.String inputField) throws java.lang.IllegalStateException
process state
which is provided as input data to
this task. See TaskIO
.inputField
- New inputField value. Default value is nulljava.lang.IllegalStateException
- this property cannot be changed after the underlying component has been createdpublic java.lang.String getInputField()
process state
which is provided as input data to
this task. See TaskIO
.public void setInputFieldList(java.lang.String... inputFieldList) throws java.lang.IllegalStateException
process state
which are
provided as input data to this task. See TaskIO
. If inputField
is also specified, it will be implicitly added to the
inputFieldList
if it is not already present.
inputFieldList
- New inputFieldList value. Default value is nulljava.lang.IllegalStateException
- this property cannot be changed after the underlying component has been createdpublic java.lang.String[] getInputFieldList()
process state
which are
provided as input data to this task. See TaskIO
. If inputField
is also specified, it will be implicitly added to the
inputFieldList
if it is not already present.
public void setOutputField(java.lang.String outputField) throws java.lang.IllegalStateException
process state
which this task writes outputs to.
See TaskIO
.outputField
- New outputField value. Default value is nulljava.lang.IllegalStateException
- this property cannot be changed after the underlying component has been createdpublic java.lang.String getOutputField()
process state
which this task writes outputs to.
See TaskIO
.public void setOutputFieldList(java.lang.String... outputFieldList) throws java.lang.IllegalStateException
process state
which this
task will write to. See TaskIO
. If outputField
is also specified, it will be implicitly added to the
outputFieldList
if it is not already present.
outputFieldList
- New outputFieldList value. Default value is nulljava.lang.IllegalStateException
- this property cannot be changed after the underlying component has been createdpublic java.lang.String[] getOutputFieldList()
process state
which this
task will write to. See TaskIO
. If outputField
is also specified, it will be implicitly added to the
outputFieldList
if it is not already present.