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

E17060-01

Uses of Class
oracle.odi.domain.model.OdiDataStore

Packages that use OdiDataStore
oracle.odi.domain.model This package contains the Oracle Data Integrator Data Model domain implementation. 
oracle.odi.domain.model.finder This package contains Oracle Data Integrator Finder interfaces for domain model objects.
 
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.domain.xrefs.expression.contexts Defines contexts (aka scope) for expression parsing. 
oracle.odi.interfaces.basic Provides a simple helper to create basic ODI interfaces from scratch. 
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. 
 

Uses of OdiDataStore in oracle.odi.domain.model
 

Methods in oracle.odi.domain.model that return OdiDataStore
 OdiDataStore OdiColumn.getDataStore()
          Returns the OdiDataStore that owns this column.
 OdiDataStore OdiCondition.getDataStore()
          Obtains the OdiDataStore to which this condition belongs.
 OdiDataStore OdiFilter.getDataStore()
          Returns the OdiDataStore to which this OdiFilter belongs and on which the filter applies.
 OdiDataStore OdiKey.getDataStore()
          Returns the OdiDataStore this OdiKey belongs to.
 OdiDataStore OdiPartition.getDataStore()
          Returns the OdiDataStore for which this OdiPartition is defined.
 OdiDataStore OdiReference.getForeignDataStore()
          Returns the foreign datastore of this OdiReference instance (the datastore that contains the FK).
 OdiDataStore OdiReference.getPrimaryDataStore()
          Returns the primary datastore of this OdiReference (the datastore that contains the PK).
 OdiDataStore OdiColumn.getTable()
          Obtains the parent OdiDataStore but match the IDataStore interface
 

Methods in oracle.odi.domain.model that return types with arguments of type OdiDataStore
 java.util.Collection<OdiDataStore> AbstractOdiSubModel.getDataStores()
          Obtains an unmodifiable collection of OdiDataStores directly owned by this sub-model
 

Methods in oracle.odi.domain.model with parameters of type OdiDataStore
 void AbstractOdiSubModel.addDataStore(OdiDataStore pDataStore)
          Add the given OdiDataStore to the collection of OdiDataStores.
 void AbstractOdiSubModel.removeDataStore(OdiDataStore pDataStore)
          Remove the given OdiDataStore from the collection of OdiDataStores of this sub-model.
 void OdiReference.setPrimaryDataStore(OdiDataStore pPrimaryDataStore)
          Sets the primary data store (i.e.
 

Constructors in oracle.odi.domain.model with parameters of type OdiDataStore
OdiColumn(OdiDataStore pDatastore, java.lang.String pName)
          Creates a column with the given name, bound to datastore pDatastore.
OdiCondition(OdiDataStore pDataStore, java.lang.String pName)
          Creates a condition belonging to pDatastore with the name pName.
OdiFilter(OdiDataStore pDataStore, java.lang.String pName)
          Construct a new OdiFilter.
OdiKey(OdiDataStore pDataStore, java.lang.String pName)
          Construct a new OdiKey.
OdiMainPartition(OdiDataStore pDataStore, java.lang.String pName)
          Constructs a new main partition.
OdiReference(OdiDataStore pForeignDataStore, OdiDataStore pPrimaryDataStore, java.lang.String pName)
          Creates an OdiReference for the given foreign and primary OdiDataStores.
 

Uses of OdiDataStore in oracle.odi.domain.model.finder
 

Methods in oracle.odi.domain.model.finder that return OdiDataStore
 OdiDataStore IOdiDataStoreFinder.findByModelAndName(OdiModel pParentModel, java.lang.String pDataStoreName)
          Deprecated. replaced by IOdiDataStoreFinder.findByName(String pName, String pModelCode)
 OdiDataStore IOdiDataStoreFinder.findByModelCodeAndName(java.lang.String pParentModelCode, java.lang.String pDataStoreName)
          Deprecated. replaced by IOdiDataStoreFinder.findByName(String pName, String pModelCode)
 OdiDataStore IOdiDataStoreFinder.findByName(java.lang.String pName, java.lang.String pModelCode)
          Find OdiDataStore by name and model code.
 

Methods in oracle.odi.domain.model.finder with parameters of type OdiDataStore
 OdiColumn IOdiColumnFinder.findByDataStoreAndName(OdiDataStore pDataStore, java.lang.String pName)
          Deprecated. replaced by IOdiColumnFinder.findByName(String pName, Number pDataStoreId)
 OdiKey IOdiKeyFinder.findByDataStoreAndName(OdiDataStore pDataStore, java.lang.String pName)
          Deprecated. replaced by IOdiKeyFinder.findByName(String pName, Number pDataStoreId)
 

Uses of OdiDataStore in oracle.odi.domain.project
 

Methods in oracle.odi.domain.project that return OdiDataStore
 OdiDataStore StepDataStore.getDataStore()
          Returns the datastore upon wich is based this step.
 OdiDataStore OdiInterface.TargetDataStore.getUnderlyingOdiDataStore()
          Returns the underlying real data store for the target of this interface.
 OdiDataStore OdiInterface.getUnderlyingTable()
          Returns the target data store of this interface, or null for a temporary interface.
 

Methods in oracle.odi.domain.project with parameters of type OdiDataStore
 void OdiInterface.TargetDataStore.setUnderlyingOdiDataStore(OdiDataStore pRealTarget, java.util.List<TargetColumn> pTargetColumns)
          For internal use only Sets the underlying datastore and resets the list of columns with pTargetColumns.
Resets the key name, sets the correct logical schema on the staging area if it's on the target.
To modify an OdiInterface object or its children, please refer to the description of the class.
 

Constructors in oracle.odi.domain.project with parameters of type OdiDataStore
StepDataStore(OdiPackage pPackage, OdiDataStore pDataStore, java.lang.String pName)
          Constructor that sets the Parent OdiPackage, the OdiDataStore upon which this Step is based and the name of this Step instance.
 

Uses of OdiDataStore in oracle.odi.domain.project.interfaces
 

Methods in oracle.odi.domain.project.interfaces that return OdiDataStore
 OdiDataStore SourceDataStore.getUnderlyingOdiDataStore()
          Gets the underlying OdiDataStore for this interface source.
 

Constructors in oracle.odi.domain.project.interfaces with parameters of type OdiDataStore
SourceDataStore(DataSet pDataSet, boolean pJournalized, java.lang.String pAlias, int pOrder, OdiDataStore pUnderlyingOdiDataStore)
          The constructor for the object.
 

Uses of OdiDataStore in oracle.odi.domain.xrefs.expression.contexts
 

Constructors in oracle.odi.domain.xrefs.expression.contexts with parameters of type OdiDataStore
OdiDataStoreExpressionContext(OdiDataStore pDataStore)
          Create a new OdiDataStoreExpressionContext.
 

Uses of OdiDataStore in oracle.odi.interfaces.basic
 

Methods in oracle.odi.interfaces.basic with parameters of type OdiDataStore
 void IBasicInterfaceCreationHelper.setJournalizedSourceDataStore(OdiDataStore pDataStore)
          Sets the source datastore for this interface as a journalized datastore with the default filter text.
 void IBasicInterfaceCreationHelper.setJournalizedSourceDataStore(OdiDataStore pDataStore, java.lang.String pJournalizationFilterSQL)
          Sets the source datastore for this interface as a journalized datastore with a customized filter expression.
 void IBasicInterfaceCreationHelper.setJournalizedSourceDataStore(OdiDataStore pDataStore, java.lang.String pJournalizationFilterSQL, java.lang.String pAlias)
          Sets the source datastore for this interface as a journalized datastore with a customized filter expression.
 void IBasicInterfaceCreationHelper.setSourceDataStore(OdiDataStore pDataStore)
          Sets the non-journalized datastore of the interface.
 void IBasicInterfaceCreationHelper.setSourceDataStore(OdiDataStore pDataStore, java.lang.String pAlias)
          Sets the non-journalized datastore of the interface with alias.
 void IBasicInterfaceCreationHelper.setTargetDataStore(OdiDataStore pTargetDatastore, java.util.Set<MappingDefinition> pMappingDefinitions)
          Sets the target datastore and mappings.
 

Uses of OdiDataStore in oracle.odi.interfaces.interactive.support.actions
 

Methods in oracle.odi.interfaces.interactive.support.actions that return OdiDataStore
 OdiDataStore InterfaceActionSetTargetDataStore.getTargetDataStore()
          Gets the target data store.
 

Constructors in oracle.odi.interfaces.interactive.support.actions with parameters of type OdiDataStore
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.
InterfaceActionSetTargetDataStore(OdiDataStore pTargetDataStore, IMappingMatchPolicy pMappingMatchPolicy, IAutoMappingComputer pAutoMappingComputerForMatchedColumn, IAutoMappingComputer pAutoMappingComputerForUnmatchedColumn, ITargetKeyChooser pTargetKeyChooser)
          Creates an action class instance which will assign a target datastore, when performAction is called.
InterfaceActionSetTargetDataStore(OdiInterface pOdiInterface, OdiDataStore pTargetDataStore, IMappingMatchPolicy pMappingMatchPolicy, IAutoMappingComputer pAutoMappingComputerForMatchedColumn, IAutoMappingComputer pAutoMappingComputerForUnmatchedColumn, ITargetKeyChooser pTargetKeyChooser)
          Deprecated. replaced by InterfaceActionSetTargetDataStore.InterfaceActionSetTargetDataStore(OdiDataStore, IMappingMatchPolicy, IAutoMappingComputer, IAutoMappingComputer, ITargetKeyChooser)
 


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.