All Packages Class Hierarchy This Package Previous Next Index
Interface com.ibm.workflow.api.ControlConnectorInstance
- public interface ControlConnectorInstance
- Version:
- 3.2.0.2
-
bendPoints()
- Returns the bend
points of the control connector instance.
-
isEmpty()
- Indicates whether no
control connector instance information is available.
-
kind()
- States the kind of the
control connector instance, whether it is a transition condition or the
"otherwise" connector.
-
name()
- Returns the name
associated with the control connector instance.
-
persistentOidOfSourceActivity()
- Returns
the object ID of the activity instance which is the source of this control
connector instance.
-
persistentOidOfTargetActivity()
- Returns
the object ID of the activity instance which is the target of this control
connector instance.
-
state()
- Returns the state of
the control connector instance, whether it is evaluated, and the result of
evaluation.
-
transitionCondition()
- Returns
the transition condition of the control connector instance.
isEmpty
public abstract boolean isEmpty() throws FmcException
- Indicates whether no
control connector instance information is available.
- Throws: FmcException
- thrown if an API error or a communication error occurred.
kind
public abstract Type kind() throws FmcException
- States the kind of the
control connector instance, whether it is a transition condition or the
"otherwise" connector.
- Throws: FmcException
- thrown if an API error or a communication error occurred.
bendPoints
public abstract Point[] bendPoints() throws FmcException
- Returns the bend
points of the control connector instance.
- Throws: FmcException
- thrown if an API error or a communication error occurred.
name
public abstract String name() throws FmcException
- Returns the name
associated with the control connector instance.
- Throws: FmcException
- thrown if an API error or a communication error occurred.
persistentOidOfSourceActivity
public abstract String persistentOidOfSourceActivity() throws FmcException
- Returns
the object ID of the activity instance which is the source of this control
connector instance.
- Throws: FmcException
- thrown if an API error or a communication error occurred.
persistentOidOfTargetActivity
public abstract String persistentOidOfTargetActivity() throws FmcException
- Returns
the object ID of the activity instance which is the target of this control
connector instance.
- Throws: FmcException
- thrown if an API error or a communication error occurred.
state
public abstract EvaluationState state() throws FmcException
- Returns the state of
the control connector instance, whether it is evaluated, and the result of
evaluation.
- Throws: FmcException
- thrown if an API error or a communication error occurred.
transitionCondition
public abstract String transitionCondition() throws FmcException
- Returns
the transition condition of the control connector instance.
- Throws: FmcException
- thrown if an API error or a communication error occurred.
All Packages Class Hierarchy This Package Previous Next Index