Skip navigation links

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

E17060-03


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 OdiReference.getPrimaryDataStoreShortcut()
          Returns the primary datastore shortcut of this OdiReference
 OdiDataStore OdiDataStore.getRealObject()
           
 OdiDataStore OdiDataStore.getShortcutBaseObject()
           
 OdiDataStore OdiDataStore.getShortcutOrigObject()
           
 OdiDataStore OdiDataStore.getShortcutReferenceObject()
           
 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.
 boolean OdiDataStore.setShortcutBaseObject(OdiDataStore pBaseObject)
           
 boolean OdiDataStore.setShortcutReferenceObject(OdiDataStore pReferenceObject)
           

 

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.
OdiDataStore(AbstractOdiSubModel pSubModel, java.lang.String pName, OdiDataStore pReferenceDataStore)
          Construct a new datastore.
OdiDataStore(OdiModel pModel, java.lang.String pName, OdiDataStore pReferenceDataStore)
          Construct a new datastore.
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.findByName(java.lang.String pName, java.lang.String pModelCode)
          Find OdiDataStore by name and model code.

 

Methods in oracle.odi.domain.model.finder that return types with arguments of type OdiDataStore
 java.util.Collection<OdiDataStore> IOdiDataStoreFinder.findByModel(java.lang.String pModelCode)
          Find OdiDataStores by model code.
 java.util.Collection<OdiDataStore> IOdiDataStoreFinder.findByReleaseTagValue(java.lang.String pReleaseTagValue, java.lang.Number pOriginatorId)
          For internal use only.
 java.util.Collection<OdiDataStore> IOdiDataStoreFinder.findByShortcutReference(java.lang.Number pOriginatorId)
          For internal use only.

 

Uses of OdiDataStore in oracle.odi.domain.project

 

Methods in oracle.odi.domain.project that return OdiDataStore
 OdiDataStore StepDataStore.getDataStore()
          Returns the datastore upon which this step is based.
 OdiDataStore StepDataStore.getDataStoreShortcut()
          Internal use only.
 OdiDataStore OdiInterface.TargetDataStore.getUnderlyingOdiDataStore()
          Returns the underlying real data store for the target of this interface.
 OdiDataStore OdiInterface.TargetDataStore.getUnderlyingShortcutOdiDataStore()
          Returns the underlying shortcut tor the target of this interface.
 OdiDataStore OdiInterface.getUnderlyingShortcutTable()
          Returns the target data store shortcut of this interface, or null for a temporary 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.
 OdiDataStore SourceDataStore.getUnderlyingOdiDataStoreShortcut()
          Gets the underlying OdiDataStore shortcut 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)
          For internal use only.
To add a source data store to an interface, do not use this constructor.

 

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.
OdiDataStoreExpressionContext(OdiDataStore pDataStore, java.lang.String pAlias)
          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.
InterfaceActionAddSourceDataStore(OdiDataStore pDataStore, DataSet pDataSet, IAliasComputer pAliasComputer, IClauseImporter pClauseImporter, IAutoMappingComputer pAutoMappingComputer)
          Creates an action to add an OdiDataStore as source in a DataSet.
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.

 


Skip navigation links

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

E17060-03


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