|
Oracle® Data Integrator Java API Reference 11g Release 1 (11.1.1.5.0) E17060-02 |
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Object
oracle.odi.domain.support.BusinessObject
oracle.odi.domain.support.AbstractRepositoryEntity
oracle.odi.domain.support.AbstractOdiEntity
oracle.odi.domain.project.OdiInterface
public class OdiInterface
An OdiInterface is the main class that implement target datastore feeding, suppling data from several source datastores.
This class is not intended to be used directly to create a consistent OdiInterface instance. A consistent OdiInterface is an OdiInterface instance that would be executed as is without any consistency issues regarding mappings, execution locations, etc. Creating a consistent OdiInterface has to be done using 3d party tools or classes that extend IInteractiveInterfaceHelper such as InteractiveInterfaceHelperWithActions.
This class is provided for internal use only, or for ODI consumers that want to read an existing OdiInterface instance. Any direct changes to that class or any of its enclosing members from package oracle.odi.domain.project.interfaces are strongly discouraged and without any guarantee. This may lead into unpredictable consistency issues.
StagingArea and TargetDataStore are non-nullable instances.
| Nested Class Summary | |
|---|---|
class |
OdiInterface.CheckableFlowConstraintA constraint that can be checkable on the flow and potentially overriden in the interface. Constraints include OdiKeys, OdiConditions and OdiReferences.This class enables to manipulate the constraints and how they can be overridden in the interface. Note that as for all objects inside interfaces, you should use IInteractiveInterfaceHelpers to modify constraints. |
static class |
OdiInterface.ColumnSorterIdSorter for TargetColumns by id. |
static class |
OdiInterface.ColumnSorterPositionComparator used to sort TargetColumns by position. |
static class |
OdiInterface.DatabaseSchemaThe database schema on which the temporary target datastore is located. |
static class |
OdiInterface.ExecutionLocationThe execution location for Join, Filter, TargetMapping and TargetColumn expressions. |
static interface |
OdiInterface.IPersistenceComparable<T extends OdiInterface.IPersistenceComparable<?>>For internal use only. |
class |
OdiInterface.StagingAreaRepresents the staging area of the interface. |
class |
OdiInterface.TargetDataStoreRepresents the target datastore of the interface, which may be either a temporary datastore or an underlying existing OdiDataStore defined in an OdiModel.It is located on an OdiLogicalSchema, which is either deduced from the underlying OdiDataStore or either shared with the Staging Area for a temporary datastore.It contains TargetColumns which are either the mirror of existing OdiColumns from the underlying OdiDataStore, or either temporary target columns. |
| Field Summary | |
|---|---|
static OdiInterface.ExecutionLocation |
DEFAULT_MAPPING_EXECUTION_LOCATIONThe default location for newly mapped mappings. |
static int |
NAME_MAX_LENGTHConstants for maximum length of the name of an interface object. |
| Fields inherited from class oracle.odi.domain.support.AbstractOdiEntity |
|---|
STARTING_INTERNAL_VERSION |
| Constructor Summary | |
|---|---|
OdiInterface(OdiFolder pFolder, java.lang.String pName, OdiContext pOptimizationContext)For internal use only Creates a new interface. |
|
| Method Summary | ||
|---|---|---|
void |
addDataSet(DataSet pDataSet)For internal use only Add a new data set to the interface. |
|
void |
addDataSet(DataSet pDataSet, int pPosition)For internal use only Add a new data set to the interface at the specified location. |
|
void |
addObjTrace(ObjTrace pTrace)For internal use only Add a new object trace to this interface. |
|
void |
clearObjTraces()For internal use only Removes all object traces from this interface. |
|
static java.lang.String |
computeSQLWithHeaders(Expression pExpression, DataSet pDataSet)Returns a String representing a more functional representation of pExpression. |
|
java.util.List<DataSet> |
getDataSets()Returns a list of data sets of this interface, sorted by its position. |
|
java.lang.String |
getDescription()Returns the description of this interface. |
|
static java.lang.String |
getExecutionLocationDescription(OdiInterface.ExecutionLocation pExecutionLocation)Returns the textual string for the enum OdiInterface.ExecutionLocation. |
|
java.util.Collection<IFlexFieldValue> |
getFlexFieldsValues()Obtains flex fields values related to this IFlexFieldUser. |
|
OdiFolder |
getFolder()Returns the parent folder of this interface. |
|
java.lang.Number |
getInstanceId()Return the instance ID of this interface. |
|
java.lang.Number |
getInterfaceId()Return the instance ID of this interface. |
|
java.io.Serializable |
getInternalId()Provides a common getter for the persistence layer to obtain an identity, irrespective of the actual type of identity used. |
|
OdiInterface.TargetDataStore |
getInternalTargetDataStore()WARNING! This method is intended for internal use only. |
|
SourceDataStore |
getJournalizedDataStore(DataSet pDataSet)Return the source datastore that is set to be journalized in the specified data set. |
|
java.lang.String |
getName()Returns the name of this interface. |
|
java.util.List<ObjTrace> |
getObjTraces()Returns the list of object traces for this interface. |
|
OdiContext |
getOptimizationContext()Returns the optimization context used when computing source sets for this interface. |
|
IRepositoryEntity |
getSecurityContainer()Define a generic way to retrieve container for entities. |
|
OdiInterface.StagingArea |
getStagingArea()Returns the Staging Area object for this interface. |
|
java.lang.String |
getSubComponentDescription()Returns the sub component's description in a human-readable way. |
|
java.lang.String |
getSubComponentDescription(java.util.Locale pLocale)Returns the sub component's description in a human-readable way for the given Locale. |
|
OdiInterface.TargetDataStore |
getTargetDataStore()Returns the target data store object of this interface. |
|
OdiDataStore |
getUnderlyingTable()Returns the target data store of this interface, or null for a temporary interface. |
|
boolean |
hasObjTrace()Returns whether there are any object traces for this interface. |
|
void |
initFlexFields(IOdiFlexFieldFinder pOdiFlexFieldFinder)Initialize flex fields related to this IFlexFieldUser. |
|
static
|
internalCollectionPersistenceEquals(java.util.Collection<T> t1, java.util.Collection<T> t2)For internal use only. |
|
static
|
internalListPersistenceEquals(java.util.List<T> t1, java.util.List<T> t2)For internal use only. |
|
boolean |
internalPersistenceEquals(OdiInterface i2)For internal use only. |
|
static boolean |
nullSafeEquals(org.eclipse.persistence.indirection.ValueHolderInterface o1, org.eclipse.persistence.indirection.ValueHolderInterface o2)For internal use only. |
|
void |
removeDataSet(DataSet pDataSet)For internal use only Remove the specified data set from this interface. |
|
void |
removeObjTrace(ObjTrace pTrace)For internal use only Add an object trace from this interface. |
|
void |
setDescription(java.lang.String pDescription)For internal use only Set the description of the interface. |
|
void |
setName(java.lang.String pName)For internal use only Sets the name of this interface. |
|
void |
setOptimizationContext(OdiContext pOptimizationContext)For internal use only Sets the optimization context for this interface. |
|
| Methods inherited from class oracle.odi.domain.support.AbstractOdiEntity |
|---|
equals, getFirstDate, getFirstUser, getInternalVersion, getLastDate, getLastUser, hashCode, isInstanceLevelSecurityNeeded, isNew, toString |
| Methods inherited from class oracle.odi.domain.support.BusinessObject |
|---|
clone |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Methods inherited from interface oracle.odi.domain.IOdiEntity |
|---|
getFirstDate, getFirstUser, getLastDate, getLastUser, isInstanceLevelSecurityNeeded |
| Field Detail |
|---|
public static final int NAME_MAX_LENGTH
public static final OdiInterface.ExecutionLocation DEFAULT_MAPPING_EXECUTION_LOCATION
| Constructor Detail |
|---|
public OdiInterface(OdiFolder pFolder,
java.lang.String pName,
OdiContext pOptimizationContext)
IInteractiveInterfaceHelper such as InteractiveInterfaceHelperWithActions to create interfaces.
pFolder - the parent folder of this interfacepName - the name, must be not nullpOptimizationContext - the optimization context of this interface| Method Detail |
|---|
public java.io.Serializable getInternalId()
IRepositoryEntityTypically a subclass will delegate to a public SomePrimitiveWrapper getId() method. The necessity for the getInternalId() abstract method is solely because the persistence layer needs a way of obtaining the identity irrespective of the actual identity implementation choice.
Returning null from this method will indicate the object has never been saved. This will likely be relied on by some DAO implementations.
getInternalId in interface IRepositoryEntitygetInternalId in interface IInterfaceSubComponentIRepositoryEntity.getInternalId()public java.lang.Number getInterfaceId()
public java.lang.String getName()
getName in interface IOdiEntitygetName in class oracle.odi.domain.support.AbstractOdiEntitysetName(String)public void setName(java.lang.String pName)
null, and the maximum name length is 400 characters. To modify an OdiInterface object or its children, please refer to the description of the class.pName - the new name for the interfacegetName()public IRepositoryEntity getSecurityContainer()
IRepositoryEntitygetSecurityContainer in interface IRepositoryEntitypublic OdiFolder getFolder()
public java.lang.String getDescription()
setDescription(String)public void setDescription(java.lang.String pDescription)
OdiInterface object or its children, please refer to the description of the class.pDescription - The new description for this interface.getDescription()public OdiInterface.TargetDataStore getTargetDataStore()
public OdiInterface.TargetDataStore getInternalTargetDataStore()
public OdiContext getOptimizationContext()
setOptimizationContext(OdiContext)public void setOptimizationContext(OdiContext pOptimizationContext)
OdiInterface object or its children, please refer to the description of the class.pOptimizationContext - the new Optimization ContextgetOptimizationContext()public java.util.List<DataSet> getDataSets()
public OdiInterface.StagingArea getStagingArea()
public void addDataSet(DataSet pDataSet)
OdiInterface object or its children, please refer to the description of the class.pDataSet - The data set to be added.
public void addDataSet(DataSet pDataSet,
int pPosition)
OdiInterface object or its children, please refer to the description of the class.pDataSet - The data set to be added.pPosition - The position where the data set is to be added.public void removeDataSet(DataSet pDataSet)
OdiInterface object or its children, please refer to the description of the class.pDataSet - The data set to be removed.public SourceDataStore getJournalizedDataStore(DataSet pDataSet)
pDataSet - The data set from which the journalized source is to be retrieved.public java.lang.Number getInstanceId()
getInstanceId in interface oracle.odi.domain.procusage.IProcedureUserpublic void addObjTrace(ObjTrace pTrace)
OdiInterface object or its children, please refer to the description of the class.pTrace - The new object trace to be added to this interface.public void removeObjTrace(ObjTrace pTrace)
OdiInterface object or its children, please refer to the description of the class.pTrace - The object trace to be removed from this interface.public boolean hasObjTrace()
true if there are object traces added to this interface, false otherwise.public void clearObjTraces()
OdiInterface object or its children, please refer to the description of the class.public java.util.List<ObjTrace> getObjTraces()
public static java.lang.String computeSQLWithHeaders(Expression pExpression,
DataSet pDataSet)
pExpression. This is achieved by replacing all referenced column names by their "heading".pExpression - the expression to processpDataSet - the dataset in which the expression should be processedpublic java.lang.String getSubComponentDescription()
IInterfaceSubComponentgetSubComponentDescription in interface IInterfaceSubComponentpublic java.lang.String getSubComponentDescription(java.util.Locale pLocale)
IInterfaceSubComponentgetSubComponentDescription in interface IInterfaceSubComponentpLocale - the Locale for which the description should be returnedpublic static java.lang.String getExecutionLocationDescription(OdiInterface.ExecutionLocation pExecutionLocation)
OdiInterface.ExecutionLocation.pExecutionLocation - The desired execution location.OdiInterface.ExecutionLocation.public OdiDataStore getUnderlyingTable()
null for a temporary interface.OdiDataStore used as the target.public java.util.Collection<IFlexFieldValue> getFlexFieldsValues()
IFlexFieldUserIFlexFieldUser.getFlexFieldsValues in interface IFlexFieldUserpublic void initFlexFields(IOdiFlexFieldFinder pOdiFlexFieldFinder)
IFlexFieldUserIFlexFieldUser.initFlexFields in interface IFlexFieldUserpOdiFlexFieldFinder - OdiFlexField finder to be used to query flex fields
public static <T extends OdiInterface.IPersistenceComparable<T>> boolean internalListPersistenceEquals(java.util.List<T> t1,
java.util.List<T> t2)
T - any type extending IPersistenceComparablet1 -t2 -
public static <T extends OdiInterface.IPersistenceComparable<T>> boolean internalCollectionPersistenceEquals(java.util.Collection<T> t1,
java.util.Collection<T> t2)
T - any type extending IPersistenceComparablet1 -t2 -
public static boolean nullSafeEquals(org.eclipse.persistence.indirection.ValueHolderInterface o1,
org.eclipse.persistence.indirection.ValueHolderInterface o2)
o1 -o2 -true if o1 equals o2 null safepublic boolean internalPersistenceEquals(OdiInterface i2)
i2 -true if this interface is equal to i2
|
Oracle® Data Integrator Java API Reference 11g Release 1 (11.1.1.5.0) E17060-02 |
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||