Oracle Warehouse Builder Java API Reference
10g Release 1 (10.1)

B12155-01

oracle.owb.processflow
Interface Transition

All Superinterfaces:
Extensible, OWBNamedObject, PropertyOwner

public interface Transition
extends OWBNamedObject, Extensible

A Transition Interface is the object that defines dependency information of a processflow. A transition determines the time dependency between to activities, the source and the destination.


Field Summary
static int ERROR
          The Transition Condition : ERROR.
static java.lang.String[] STATUSES
          The Transition Condition defined in String Array.
static int SUCCESS
          The Transition Condition : SUCCESS.
static int UNCONDITIONAL
          The Transition Condition : UNCONDITIONAL.
static int WARNING
          The Transition Condition : WARNING.

 

Method Summary
 java.lang.String getCondition()
          Retrieve the condition associated with this transition.
 Activity getDestinationActivity()
          Gets the destination activity for this transition.
 Activity getSourceActivity()
          Gets the source activity for this transition.
 void setCondition(int condition)
          Set the transition condition of this transition.
 void setCondition(java.lang.String condition)
          Set the transition condition of this transition.

 

Methods inherited from interface oracle.owb.foundation.OWBNamedObject
delete, getBusinessName, getClassDefinition, getComponent, getDescription, getName, getUOID, isDeletable, isEditable, isRenamable, setBusinessName, setDescription, setName

 

Methods inherited from interface oracle.owb.foundation.property.PropertyOwner
getDefaultPropertyValue, getLogicalPropertyKeys, getPhysicalPropertyKeys, getPropertyDomain, getPropertyKeys, getPropertyValue, getPropertyValueString, isLogicalProperty, isPhysicalProperty, isReadOnlyProperty, setPropertyValue, setPropertyValueByString

 

Field Detail

UNCONDITIONAL

public static final int UNCONDITIONAL
The Transition Condition : UNCONDITIONAL.
See Also:
Constant Field Values

SUCCESS

public static final int SUCCESS
The Transition Condition : SUCCESS.
See Also:
Constant Field Values

ERROR

public static final int ERROR
The Transition Condition : ERROR.
See Also:
Constant Field Values

WARNING

public static final int WARNING
The Transition Condition : WARNING.
See Also:
Constant Field Values

STATUSES

public static final java.lang.String[] STATUSES
The Transition Condition defined in String Array.
Method Detail

getCondition

public java.lang.String getCondition()
Retrieve the condition associated with this transition.
Returns:
The associated condition.
See Also:
setCondition(int)

setCondition

public void setCondition(int condition)
Set the transition condition of this transition.
Parameters:
condition - The transition condition to set.
See Also:
getCondition()

setCondition

public void setCondition(java.lang.String condition)
Set the transition condition of this transition.
Parameters:
condition - The transition condition to set.
See Also:
getCondition()

getSourceActivity

public Activity getSourceActivity()
Gets the source activity for this transition.
Returns:
the source Activity of this transition

getDestinationActivity

public Activity getDestinationActivity()
Gets the destination activity for this transition.
Returns:
the destination Activity of this transition

Oracle Warehouse Builder Java API Reference
10g Release 1 (10.1)

B12155-01

Copyright © 2003, Oracle. All Rights Reserved.