public class XORGateway extends ProcessElement
Process.state
. If the AdvancedCriteria evaluate to true, the
nextElement
is chosen, otherwise the failureElement
.
Note that "XOR" in
XORGateway
means "exclusive or" - only one next element is chosen.
config, configOnly, factoryCreated, factoryProperties, id, scClassName
Constructor and Description |
---|
XORGateway() |
XORGateway(com.google.gwt.core.client.JavaScriptObject jsObj) |
XORGateway(java.lang.String ID,
ProcessElement nextElement,
ProcessElement failureElement) |
XORGateway(java.lang.String ID,
java.lang.String nextElement,
java.lang.String failureElement) |
Modifier and Type | Method and Description |
---|---|
com.google.gwt.core.client.JavaScriptObject |
create() |
Criteria |
getCriteria()
Simple or
AdvancedCriteria to be applied to the task inputs. |
java.lang.String |
getFailureElement()
ID of the next sequence or element to proceed to if the criteria do not match.
|
java.lang.String |
getNextElement()
ID of the next
sequence or {process.elements,element} to
procede to if the criteria match the process state. |
static XORGateway |
getOrCreateRef(com.google.gwt.core.client.JavaScriptObject jsObj) |
void |
setCriteria(Criteria criteria)
Simple or
AdvancedCriteria to be applied to the task inputs. |
void |
setFailureElement(ProcessElement failureElement) |
void |
setFailureElement(java.lang.String failureElement)
ID of the next sequence or element to proceed to if the criteria do not match.
|
void |
setNextElement(ProcessElement nextElement) |
void |
setNextElement(java.lang.String nextElement)
ID of the next
sequence or {process.elements,element} to
procede to if the criteria match the process state. |
convertToJavaScriptArray, getID, getJsObj, getOrCreateJsObj, getProcessElements, isCreated, onInit, setAttribute, setID, setJavaScriptObject
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 XORGateway()
public XORGateway(com.google.gwt.core.client.JavaScriptObject jsObj)
public XORGateway(java.lang.String ID, java.lang.String nextElement, java.lang.String failureElement)
public XORGateway(java.lang.String ID, ProcessElement nextElement, ProcessElement failureElement)
public static XORGateway getOrCreateRef(com.google.gwt.core.client.JavaScriptObject jsObj)
public com.google.gwt.core.client.JavaScriptObject create()
create
in class ProcessElement
public void setCriteria(Criteria criteria) throws java.lang.IllegalStateException
AdvancedCriteria
to be applied to the task inputs. These will be applied to
either the data indicated by the Task.inputField
or to the
"inputRecord" if multiple input fields are declared (see TaskIO
).criteria
- New criteria value. Default value is IRjava.lang.IllegalStateException
- this property cannot be changed after the underlying component has been createdpublic Criteria getCriteria()
AdvancedCriteria
to be applied to the task inputs. These will be applied to
either the data indicated by the Task.inputField
or to the
"inputRecord" if multiple input fields are declared (see TaskIO
).public void setFailureElement(java.lang.String failureElement) throws java.lang.IllegalStateException
failureElement
- New failureElement value. Default value is nulljava.lang.IllegalStateException
- this property cannot be changed after the underlying component has been createdpublic java.lang.String getFailureElement()
public void setNextElement(java.lang.String nextElement) throws java.lang.IllegalStateException
sequence
or {process.elements,element} to
procede to if the criteria match the process state. If this gateway is part of a sequence
and has a next element in the sequence,
nextElement
does not need to be specified.setNextElement
in class ProcessElement
nextElement
- New nextElement value. Default value is nulljava.lang.IllegalStateException
- this property cannot be changed after the underlying component has been createdpublic java.lang.String getNextElement()
sequence
or {process.elements,element} to
procede to if the criteria match the process state. If this gateway is part of a sequence
and has a next element in the sequence,
nextElement
does not need to be specified.getNextElement
in class ProcessElement
public void setFailureElement(ProcessElement failureElement) throws java.lang.IllegalStateException
java.lang.IllegalStateException
setFailureElement(String)
public void setNextElement(ProcessElement nextElement) throws java.lang.IllegalStateException
java.lang.IllegalStateException
setNextElement(String)