Oracle® Data Integrator Java API Reference
11g Release 1 (11.1.1.3.0)

E17060-01

Uses of Class
oracle.odi.domain.project.OdiInterface.ExecutionLocation

Packages that use OdiInterface.ExecutionLocation
oracle.odi.domain.project This package contains the Oracle Data Integrator Project implementation. 
oracle.odi.domain.project.interfaces This package contains Oracle Data Integrator Interface implementation. 
oracle.odi.interfaces.basic Provides a simple helper to create basic ODI interfaces from scratch. 
oracle.odi.interfaces.interactive Provides interfaces for interactive handling of Oracle Data Integrator interfaces. 
oracle.odi.interfaces.interactive.support This package and its sub-packages provide the implementations for interactive handling of Oracle Data Integrator interfaces. 
oracle.odi.interfaces.interactive.support.actionlistener This package contains the implementations for creating action listeners when working with InteractiveInterfaceHelperWithActions
oracle.odi.interfaces.interactive.support.actions This package contains the Oracle Data Integrator interface action implementation classes Classes in this package allow modification to the ODI interface object, when used in conjunction with the oracle.odi.interfaces.interactive.support.InteractiveInterfaceHelperWithActions helper class. 
oracle.odi.interfaces.interactive.support.sourceset.computers Contains classes which handles the computation of source sets of an Oracle Data Integrator interface. 
oracle.odi.interfaces.interactive.support.textholder This package contains the implementations of text holder for various types of objects, such as joins, filters, target columns and target mappings, in Oracle Data Integrator interfaces. 
 

Uses of OdiInterface.ExecutionLocation in oracle.odi.domain.project
 

Fields in oracle.odi.domain.project declared as OdiInterface.ExecutionLocation
static OdiInterface.ExecutionLocation OdiInterface.DEFAULT_MAPPING_EXECUTION_LOCATION
          The default location for newly mapped mappings.
 

Methods in oracle.odi.domain.project that return OdiInterface.ExecutionLocation
static OdiInterface.ExecutionLocation OdiInterface.ExecutionLocation.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static OdiInterface.ExecutionLocation[] OdiInterface.ExecutionLocation.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in oracle.odi.domain.project with parameters of type OdiInterface.ExecutionLocation
static java.lang.String OdiInterface.getExecutionLocationDescription(OdiInterface.ExecutionLocation pExecutionLocation)
          Returns the textual string for the enum OdiInterface.ExecutionLocation.
 

Uses of OdiInterface.ExecutionLocation in oracle.odi.domain.project.interfaces
 

Methods in oracle.odi.domain.project.interfaces that return OdiInterface.ExecutionLocation
 OdiInterface.ExecutionLocation GenericClause.getExecutionLocation()
          Returns the execution location of this clause.
 OdiInterface.ExecutionLocation TargetColumn.getExecutionLocation()
          Returns the location of the execution of the mapping, if any.
If no mapping is set for this target column, null is returned.
If this column is mapped on the target then TARGET is returned.
If this column is mapped on the Staging Area or on Source, then null is returned, you will need to fetch the execution location for each DataSet on the corresponding TargetMappings, either by fetching them from TargetColumn.getTargetMappings() either from DataSet.getMapping(String).
 OdiInterface.ExecutionLocation TargetMapping.getExecutionLocation()
          Returns the execution location of this mapping.
 

Methods in oracle.odi.domain.project.interfaces with parameters of type OdiInterface.ExecutionLocation
 void GenericClause.setExecutionLocation(OdiInterface.ExecutionLocation pExecutionLocation)
          Internal use only Sets the execution location of this clause.
 void TargetColumn.setExecutionLocation(OdiInterface.ExecutionLocation pExecutionLocation)
          Internal use only Sets the execution location for this target column.
To set the execution location on target columns, use InterfaceActionOnTargetMappingSetLocation.
 void TargetMapping.setExecutionLocation(OdiInterface.ExecutionLocation pExecutionLocation)
          Internal use only Sets the execution location for this mapping.
 

Constructors in oracle.odi.domain.project.interfaces with parameters of type OdiInterface.ExecutionLocation
Filter(DataSet pDataSet, java.lang.String pSql, Filter.FilterType pFilterType, OdiInterface.ExecutionLocation pExecutionLocation)
          Internal use only Builds a filter clause in the parent dataset using the specified SQL expression text, clause type (normal or journalized) and the desired execution location.
GenericClause(DataSet pDataSet, Expression pSql, OdiInterface.ExecutionLocation pExecutionLocation)
          Internal use only Create a new dataset in the specified parent dataset.
GenericClause(DataSet pDataSet, java.lang.String pSql, OdiInterface.ExecutionLocation pExecutionLocation)
          Internal use only Create a new dataset in the specified parent dataset.
Join(DataSet pDataSet, java.lang.String pSql, boolean pOrdered, OdiInterface.ExecutionLocation pExecutionLocation)
          Internal use only Builds a join clause in the parent dataset using the specified SQL expression text, clause type (ordered, non-ordered or cross join) and the desired execution location.
Join(DataSet pDataSet, java.lang.String pSql, oracle.odi.domain.project.interfaces.Join.JoinType pJoinType, OdiInterface.ExecutionLocation pExecutionLocation)
          Deprecated. use Join.Join(DataSet pDataSet, String pSql, boolean pOrdered, OdiInterface.ExecutionLocation pExecutionLocation)
Join(SourceDataStore pSourceDataStore1, SourceDataStore pSourceDataStore2, OdiInterface.ExecutionLocation pExecutionLocation)
          Internal use only Builds a non-ordered cross join clause in the same dataset as the the two specified source data sources with the desired execution location.
TargetColumn(OdiInterface pParentInterface, OdiColumn pRealColumn, OdiInterface.ExecutionLocation pExecutionLocation)
          Internal use only Creates a new target column object.
TargetColumn(OdiInterface pParentInterface, OdiInterface.ExecutionLocation pExecutionLocation)
          Internal use only Creates a new target column object.
TargetColumn(OdiInterface pParentInterface, java.lang.String pName, OdiInterface.ExecutionLocation pExecutionLocation)
          Internal use only Creates a new target column object.
TargetMapping(DataSet pParentDataSet, TargetColumn pTargetColumn, Expression pSqlExpression, OdiInterface.ExecutionLocation pExecutionLocation)
          Internal use only Builds a TargetMapping for a TargetColumn on a DataSet with a given SQL String expression.
TargetMapping(DataSet pParentDataSet, TargetColumn pTargetColumn, java.lang.String pSql, OdiInterface.ExecutionLocation pExecutionLocation)
          Internal use only Builds a TargetMapping for a TargetColumn on a DataSet with a given SQL String expression.
 

Uses of OdiInterface.ExecutionLocation in oracle.odi.interfaces.basic
 

Methods in oracle.odi.interfaces.basic that return OdiInterface.ExecutionLocation
 OdiInterface.ExecutionLocation MappingDefinition.getExecutionLocation()
          Returns the execution location for this mapping.
 

Constructors in oracle.odi.interfaces.basic with parameters of type OdiInterface.ExecutionLocation
MappingDefinition(java.lang.String pColumnName, java.lang.String pMapping, OdiInterface.ExecutionLocation pExecutionLocation)
          Creates a mapping definition with only a mapping and execution location.
MappingDefinition(java.lang.String pColumnName, java.lang.String pMapping, java.lang.String pDescription, OdiInterface.ExecutionLocation pExecutionLocation)
          Creates a mapping definition with a description and execution location.
 

Uses of OdiInterface.ExecutionLocation in oracle.odi.interfaces.interactive
 

Methods in oracle.odi.interfaces.interactive with parameters of type OdiInterface.ExecutionLocation
 Expression IActionHelper.computeExpression(java.lang.String pSql, IExecutableTextHolder pExecutableTextHolder, OdiInterface.ExecutionLocation pExecutionLocation, DataSet pDataSet)
          Computes the expression of the SQL text.
Note that pDataSet is optional (can be null when pExecutionLocation is TARGET.
 TargetMapping IActionHelper.createTargetMapping(DataSet pDataSet, TargetColumn pColumn, OdiInterface.ExecutionLocation pLocation, java.lang.Object pText)
          For internal use only Create a new target mapping.
 void IInterfaceActionListener.locationChanged(IExecutableTextHolder pExecutableTextHolder, OdiInterface.ExecutionLocation pOldExecutionLocation, OdiInterface.ExecutionLocation pNewExecutionLocation)
          Responds to the completion of the action of changing the location of an ODI interface child object.
 

Uses of OdiInterface.ExecutionLocation in oracle.odi.interfaces.interactive.support
 

Methods in oracle.odi.interfaces.interactive.support that return OdiInterface.ExecutionLocation
static OdiInterface.ExecutionLocation InteractiveInterfaceHelperWithActions.computeExecutionLocationForDatastores(SourceDataStore pSrcDataStore1, SourceDataStore pSrcDataStore2)
          For internal use only Computes the default exection location of an expression between two specfied data stores.
 OdiInterface.ExecutionLocation IExecutableTextHolder.getExecutionLocation()
          Basic getter.
 

Methods in oracle.odi.interfaces.interactive.support with parameters of type OdiInterface.ExecutionLocation
 Expression InteractiveInterfaceHelperWithActions.computeExpression(java.lang.String pSql, IExecutableTextHolder pExecutableTextHolder, OdiInterface.ExecutionLocation pExecutionLocation, DataSet pDataSet)
          For internal use only Computes the expression object of the specified SQL expression text for the given text holder in the desired data set and execution location.
 TargetMapping InteractiveInterfaceHelperWithActions.createTargetMapping(DataSet pDataSet, TargetColumn pColumn, OdiInterface.ExecutionLocation pLocation, java.lang.Object pText)
          For internal use only Create a new target mapping.
 

Uses of OdiInterface.ExecutionLocation in oracle.odi.interfaces.interactive.support.actionlistener
 

Methods in oracle.odi.interfaces.interactive.support.actionlistener with parameters of type OdiInterface.ExecutionLocation
 void ActionListenerAbstract.locationChanged(IExecutableTextHolder pExecutableTextHolder, OdiInterface.ExecutionLocation pOldExecutionLocation, OdiInterface.ExecutionLocation pNewExecutionLocation)
           
 void ActionListenerComposer.locationChanged(IExecutableTextHolder pExecutableTextHolder, OdiInterface.ExecutionLocation pOldExecutionLocation, OdiInterface.ExecutionLocation pNewExecutionLocation)
           
 

Uses of OdiInterface.ExecutionLocation in oracle.odi.interfaces.interactive.support.actions
 

Constructors in oracle.odi.interfaces.interactive.support.actions with parameters of type OdiInterface.ExecutionLocation
InterfaceActionAddCrossJoin(SourceDataStore pSourceDataStore1, SourceDataStore pSourceDataStore2, OdiInterface.ExecutionLocation pExecutionLocation)
          Constructor to create an action class instance which will create a cross join between two sources in an interface, when performAction is called.
InterfaceActionAddFilter(DataSet pDataSet, java.lang.String pSql, OdiInterface.ExecutionLocation pExecutionLocation)
          Constructor to create an action class instance which will create a filter on a data sources in an interface, when performAction is called.
InterfaceActionAddJoin(DataSet pDataSet, java.lang.String pSql, OdiInterface.ExecutionLocation pExecutionLocation)
          Constructor to create an action class instance which will create a join between two sources in an interface, when performAction is called.
InterfaceActionAddLookup(DataSet pDataSet, OdiDataStore pOdiDataStore, java.lang.String pAlias, java.lang.String pLookupSql, OdiInterface.ExecutionLocation pExecutionLocation, boolean pSelectLookup)
          A constructor to create the lookup creation action, to do a lookup of rows from a data source.
InterfaceActionAddLookup(DataSet pDataSet, OdiInterface pOdiInterface, java.lang.String pAlias, java.lang.String pLookupSql, OdiInterface.ExecutionLocation pExecutionLocation, boolean pSelectLookup)
          A constructor to create the lookup creation action, to do a lookup of rows from another interface result.
InterfaceActionAddNaturalJoin(SourceDataStore pSourceDataStore1, SourceDataStore pSourceDataStore2, OdiInterface.ExecutionLocation pExecutionLocation)
          Constructor to create an action class instance which will create a natural join between two sources in an interface, when performAction is called.
InterfaceActionOnGenericClauseSetExecutionLocation(GenericClause pGenericClause, OdiInterface.ExecutionLocation pExecutionLocation)
          The constructor for the action class.
InterfaceActionOnTargetMappingSetLocation(java.lang.String pColumnName, OdiInterface.ExecutionLocation pExecutionLocation, DataSet pDataSet)
          Creates an action class instance which will set the location on a target mapping, when performAction is called.
 

Uses of OdiInterface.ExecutionLocation in oracle.odi.interfaces.interactive.support.sourceset.computers
 

Methods in oracle.odi.interfaces.interactive.support.sourceset.computers with parameters of type OdiInterface.ExecutionLocation
 void SourceSetComputerEraser.locationChanged(IExecutableTextHolder pExecutableTextHolder, OdiInterface.ExecutionLocation pOldExecutionLocation, OdiInterface.ExecutionLocation pNewExecutionLocation)
          Marks the data set for an executable text holder of an interface sub-component as "dirty" (to indicate source set recomputing is required) when the location of that interface sub-component is changed.
 void SourceSetComputerLazy.locationChanged(IExecutableTextHolder pExecutableTextHolder, OdiInterface.ExecutionLocation pOldExecutionLocation, OdiInterface.ExecutionLocation pNewExecutionLocation)
           
 void SourceSetComputerOneTable.locationChanged(IExecutableTextHolder pExecutableTextHolder, OdiInterface.ExecutionLocation pOldExecutionLocation, OdiInterface.ExecutionLocation pNewExecutionLocation)
           
 void SourceSetComputerRetainer.locationChanged(IExecutableTextHolder pExecutableTextHolder, OdiInterface.ExecutionLocation pOldExecutionLocation, OdiInterface.ExecutionLocation pNewExecutionLocation)
          Marks the data set for an executable text holder of an interface sub-component as "dirty" (to indicate source set recomputing is required) when the location of that interface sub-component is changed.
 

Uses of OdiInterface.ExecutionLocation in oracle.odi.interfaces.interactive.support.textholder
 

Methods in oracle.odi.interfaces.interactive.support.textholder that return OdiInterface.ExecutionLocation
 OdiInterface.ExecutionLocation ExecutableTextHolderGenericClause.getExecutionLocation()
           
 OdiInterface.ExecutionLocation ExecutableTextHolderTargetColumn.getExecutionLocation()
           
 OdiInterface.ExecutionLocation ExecutableTextHolderTargetMapping.getExecutionLocation()
           
 


Oracle® Data Integrator Java API Reference
11g Release 1 (11.1.1.3.0)

E17060-01

Copyright © 2010, Oracle and/or its affiliates. All rights reserved.