oracle.owb.relational
Interface Sequence

All Superinterfaces:
ColumnOwner, CompilableObject, Component, Extensible, OWBNamedObject, PropertyOwner, ReconcileSource, Snapshotable, ValidatableObject

public interface Sequence
extends Component, ColumnOwner, ValidatableObject, CompilableObject, Extensible, ReconcileSource

Sequence interface represents a database sequence table. All sequences are assumed to have the following columns: CURRVAL (current value)and NEXTVAL (next value). These columns are created automatically when a sequence is created, and they cannot be modified or deleted. No other columns can be created for a sequence.


Field Summary
static java.lang.String CURRVAL_NAME
          CURRVAL
static java.lang.String NEXTVAL_NAME
          NEXTVAL
 
Fields inherited from interface oracle.owb.metadatamgmt.changemgmt.Snapshotable
MAX_DEPENDENCY_DEPTH, MIN_DEPENDENCY_DEPTH
 
Method Summary
 Module getModule()
          Get the module.
 
Methods inherited from interface oracle.owb.foundation.Component
getOwningFolder, isReloadNeeded, lock, reload, unlock
 
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.metadatamgmt.changemgmt.Snapshotable
compare, compare, compare, compare, createSnapshot, createSnapshot, createSnapshotWithDependeeComponents, createSnapshotWithDependeeComponents, getSnapshots
 
Methods inherited from interface oracle.owb.relational.ColumnOwner
createColumn, createColumn, findColumn, getColumns, moveColumn
 
Methods inherited from interface oracle.owb.compile.ValidatableObject
validate
 
Methods inherited from interface oracle.owb.compile.CompilableObject
compile
 
Methods inherited from interface oracle.owb.foundation.property.PropertyOwner
getDefaultPropertyValue, getLogicalPropertyKeys, getPhysicalPropertyKeys, getPropertyDomain, getPropertyKeys, getPropertyValue, getPropertyValueString, isLogicalProperty, isPhysicalProperty, isReadOnlyProperty, setPropertyValue, setPropertyValueByString
 
Methods inherited from interface oracle.owb.reconcile.ReconcileSource
getReconcileTargetTypes, getType
 

Field Detail

CURRVAL_NAME

public static final java.lang.String CURRVAL_NAME
CURRVAL

NEXTVAL_NAME

public static final java.lang.String NEXTVAL_NAME
NEXTVAL
Method Detail

getModule

public Module getModule()
Get the module.
Returns:
the containing module.