|
Oracle® Data Integrator Java API Reference 11g Release 1 (11.1.1.6.0) E17060-03 |
|||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use IRepositoryEntity | |
|---|---|
| oracle.odi.core.security | This package (and its sub packages) implements the security layer for ODI SDK including login authentication, password management and privileges check. |
| oracle.odi.domain | Root package of Oracle Data Integrator domain concerns, providing commons classes required by sub-packages. |
| oracle.odi.domain.flexfields | Provides class related to FlexFields override concerns. |
| oracle.odi.domain.model | This package contains the Oracle Data Integrator Data Model domain implementation. |
| 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.runtime.loadplan | |
| oracle.odi.domain.runtime.lpi | |
| oracle.odi.domain.runtime.scenario | This package contains classes for managing Oracle Data Integrator Scenarios and related objects. |
| oracle.odi.domain.runtime.scheduling | |
| oracle.odi.domain.runtime.sequence | This package contains classes for managing Oracle Data Integrator Sequences and their values. |
| oracle.odi.domain.runtime.session | This package contains classes for managing Oracle Data Integrator Sessions and related objects. |
| oracle.odi.domain.runtime.variable | This package contains classes for needed to create and work with Oracle Data Integrator variables and their values. |
| oracle.odi.domain.security | This package contains user implementation. |
| oracle.odi.domain.support | |
| oracle.odi.domain.topology | This package contains the Oracle Data Integrator Topology domain model implementation. |
| oracle.odi.missingref | Provides classes to manage missing references which may occur when doing versioning or import/export operations. |
| oracle.odi.missingref.support | Provides classes to support the management of missing references which may occur when doing versioning or import/export operations. |
| Uses of IRepositoryEntity in oracle.odi.core.security |
|---|
| Methods in oracle.odi.core.security that return types with arguments of type IRepositoryEntity | |
|---|---|
java.lang.Class<? extends IRepositoryEntity> |
PermissionDeniedException.getEntityClass()Return the ODI class of the object to check. |
| Methods in oracle.odi.core.security with parameters of type IRepositoryEntity | |
|---|---|
void |
SecurityManager.checkPermission(IRepositoryEntity entity, PermissionType pPermissionType)This is a helper method to check the Permission on the current authentication. |
static Permission |
Permission.getInstancePermission(PermissionType pType, IRepositoryEntity pEntity)Return Permission object for certain entity and priviledge. |
static Permission |
Permission.getInstancePermission(PermissionType pType, IRepositoryEntity pParentEntity, java.lang.Class pChildEntityClass)Return Permission object for certain child type under certain parent entity and priviledge. |
boolean |
SecurityManager.isAuthorized(IRepositoryEntity pEntity, PermissionType pPermissionType)Almost same as above method, but take in entity and permission type directly. |
| Method parameters in oracle.odi.core.security with type arguments of type IRepositoryEntity | |
|---|---|
static PermissionDeniedException |
PermissionDeniedException.permissionDeniedForEntityClass(java.lang.Class<? extends IRepositoryEntity> entityClass, PermissionType pt, long id)Create PermissionDetailedException for Entity Class with default error message Messages.ERR_SECURITY_OPERATION_IS_NOT_GRANTED. |
static PermissionDeniedException |
PermissionDeniedException.permissionDeniedForEntityClass(java.lang.Class<? extends IRepositoryEntity> entityClass, PermissionType pt, long id, oracle.odi.internal.util.MessageHandle msg, java.lang.Object... pMsgArgs)Create PermissionDetailedException for Entity Class. |
| Uses of IRepositoryEntity in oracle.odi.domain |
|---|
| Subinterfaces of IRepositoryEntity in oracle.odi.domain | |
|---|---|
interface |
IMasterOdiEntityMarker interface for entities that resides in the ODI Master Repository. |
interface |
IOdiEntityAn interface that indicates an object is an ODI entity. |
interface |
IWorkDevelopmentOdiEntityMarker interface for entities that resides in the ODI Work development Repository. |
interface |
IWorkRuntimeOdiEntityMarker interface for entities that resides in the ODI Runtime Repository. |
| Methods in oracle.odi.domain that return IRepositoryEntity | |
|---|---|
IRepositoryEntity |
IRepositoryEntity.getSecurityContainer()Define a generic way to retrieve container for entities. |
| Uses of IRepositoryEntity in oracle.odi.domain.flexfields |
|---|
| Subinterfaces of IRepositoryEntity in oracle.odi.domain.flexfields | |
|---|---|
interface |
IFlexFieldUserThis interface is implemented by ODI objects for which an OdiFlexField's default value can be overridden. |
| Uses of IRepositoryEntity in oracle.odi.domain.model |
|---|
| Classes in oracle.odi.domain.model that implement IRepositoryEntity | |
|---|---|
class |
AbstractOdiSubModelAbstract base class for sub-models. |
class |
KeyColumnInternal: Association class between an OdiKey and an OdiColumn. |
class |
OdiColumnAn OdiColumn represents the data structure of a column part of an OdiDataStore. |
class |
OdiConditionAn OdiCondition allows to define a data constraint to check on an OdiDataStore. |
class |
OdiDataStoreAn OdiDataStore represents a two-dimensional tabular data structure, generally a database table structure. |
class |
OdiFilterAn OdiFilter allows to define data filter relative to an OdiDataStore. |
class |
OdiGlobalSubModelAbstractOdiSubModel subclass, to manage global ODI submodels. |
class |
OdiKeyA key for an OdiDataStore. |
class |
OdiMainPartitionRepresents a main partition of an OdiDataStore. |
class |
OdiModelAn OdiModel represents a set of datastores corresponding to data structures contained in a physical schema. |
class |
OdiModelFolderAn OdiModelFolder is used to arrange OdiModels. |
class |
OdiPartitionAn OdiPartition is an abstract class defining database partitioning. |
class |
OdiReferenceAn OdiReference is a reference between a foreign OdiDataStore and a primary OdiDataStore. |
class |
OdiSubModelA sub model is a group of functionally homogeneous datastores within a model. |
class |
OdiSubPartitionSubclasses OdiPartition, and is a child of a OdiMainPartition instance. |
class |
ReferenceColumnA reference column for an OdiReference. |
| Methods in oracle.odi.domain.model that return IRepositoryEntity | |
|---|---|
IRepositoryEntity |
OdiReferenceShortcutAdapter.getConsumer() |
IRepositoryEntity |
AbstractOdiSubModel.getSecurityContainer() |
IRepositoryEntity |
KeyColumn.getSecurityContainer() |
IRepositoryEntity |
OdiColumn.getSecurityContainer() |
IRepositoryEntity |
OdiCondition.getSecurityContainer() |
IRepositoryEntity |
OdiDataStore.getSecurityContainer() |
IRepositoryEntity |
OdiFilter.getSecurityContainer() |
IRepositoryEntity |
OdiKey.getSecurityContainer() |
IRepositoryEntity |
OdiModel.getSecurityContainer() |
IRepositoryEntity |
OdiModelFolder.getSecurityContainer() |
IRepositoryEntity |
OdiPartition.getSecurityContainer() |
IRepositoryEntity |
OdiReference.getSecurityContainer() |
IRepositoryEntity |
ReferenceColumn.getSecurityContainer() |
| Uses of IRepositoryEntity in oracle.odi.domain.project |
|---|
| Classes in oracle.odi.domain.project that implement IRepositoryEntity | |
|---|---|
class |
OdiCKMRepresents the Control Knowledge Module. |
class |
OdiCKMLineSubclass of ProcedureLine providing CKM specific properties used during code generation. |
class |
OdiFolderAn OdiFolder is a workbench entity that ODI users will use to organize their work related to a single OdiProject. |
class |
OdiIKMRepresents an Integration Knowledge Module. |
class |
OdiIKMLineSubclass of ProcedureLine providing IKM specific properties used during code generation. |
class |
OdiInterfaceAn OdiInterface is the main class that implement target datastore feeding, suppling data from several source datastores. |
class |
OdiJKMRepresents a journalization knowledge module. |
class |
OdiJKMLineSubclass of ProcedureLine providing JKM specific properties used during code generation. |
class |
OdiKM<L extends OdiProcedureLine>Abstract base class that all knowledge modules types subclasses. |
class |
OdiLKMRepresents the Loading Knowledge Module. |
class |
OdiLKMLineSubclass of ProcedureLine providing LKM specific properties used during code generation. |
class |
OdiPackageRepresents an ODI package. |
class |
OdiProcedure<L extends OdiProcedureLine>Abstract high-level object encompassing ODI User Procedures and ODI Knowledge Modules. |
class |
OdiProcedureLineAn OdiProcedureLine holds metadata about a task to be executed by ODI Execution Engine. |
class |
OdiProjectAn OdiProject is a top level workbench object in ODI. |
class |
OdiRKMRepresents the Reverse Knowledge Module. |
class |
OdiRKMLineSubclass of ProcedureLine providing RKM specific properties used during reverse engineering. |
class |
OdiSequenceRepresents design time metadata about a sequence. |
class |
OdiSKMRepresents the Service Knowledge Module. |
class |
OdiUserFunctionRepresents design time metadata about a customized function that can be used in expressions of other objects such as OdiInterface, OdiUserProcedure. |
class |
OdiUserFunctionImplRepresents metadata of an actual OdiUserFunction implementation for one or several OdiTechnology. |
class |
OdiUserProcedureRepresents the ODI user procedures. |
class |
OdiUserProcedureLineSubclass of ProcedureLine providing User Procedure specific properties. |
class |
OdiVariableRepresents design time metadata about a variable. |
class |
ProcedureOptionRepresents the option for an OdiProcedure. |
class |
StepAbstract base class of package's steps. |
class |
StepDataStoreSubclass of Step that represent a step based on a datastore. |
class |
StepInterfaceSubclass of Step that will be used inside an OdiPackage to express execution of an OdiInterface. |
class |
StepModelSubclass of Step that represents a step based on an OdiModel. |
class |
StepOdiCommandSubclass of Step representing a step that contains an ODI command. |
class |
StepOsCommandSubclass of Step representing a step that contains an OS (Operating System) command. |
class |
StepProcedureSubclass of Step that will be used inside an OdiPackage to express execution of an OdiUserProcedure. |
class |
StepSubModelSubclass of Step that will be used to control an OdiSubModel for errors. |
class |
StepVariableSubclass of Step that will be used inside an OdiPackage to express usage/action of a variable for further use inside that OdiPackage. |
| Uses of IRepositoryEntity in oracle.odi.domain.project.interfaces |
|---|
| Classes in oracle.odi.domain.project.interfaces that implement IRepositoryEntity | |
|---|---|
class |
DataSetThis class represents a dataset inside an OdiInterface. |
class |
FilterThis class represents a filter in an interface. |
class |
GenericClauseThis class represents a generic clause in an interface, which is either a join or a filter. |
class |
Join |
class |
ObjTraceThis class represents trace messages of an object in the repository. |
class |
SourceDataStoreA class that represents a OdiDataStore object that is used as a source in an ODI interface. |
class |
SourceSetA source set groups all joins and mappings that will be executed on the same physical schema. |
class |
TargetColumnA target column is a column of a OdiInterface.TargetDataStore in an OdiInterface.It contains information about how the column is mapped (indicators, potentially a target SQL mapping text). When the target datastore has an underlying OdiDataStore, each TargetMapping points to one OdiColumn of this OdiDataStore.In this case, TargetColumns are persisted according to an IMappingPersistencePolicy for obvious performance reasons (on a target datastore with 500 columns on which only 10 columns are mapped, this can make a difference).On temporary target datastores, target columns do not reflect an OdiColumn and are systematically persisted.Note that all setters in this class should not be used directly. |
class |
TargetMappingThis class represents a mapping in an interface. The mapping is in a dataset and has an execution location. Created on 20 dec. |
| Methods in oracle.odi.domain.project.interfaces that return IRepositoryEntity | |
|---|---|
IRepositoryEntity |
SourceDataStoreShortcutAdapter.getConsumer() |
IRepositoryEntity |
DataSet.getSecurityContainer() |
IRepositoryEntity |
GenericClause.getSecurityContainer() |
IRepositoryEntity |
ObjTrace.getSecurityContainer() |
IRepositoryEntity |
SourceDataStore.getSecurityContainer() |
IRepositoryEntity |
SourceSet.getSecurityContainer()Returns the data set for which this source set is attached to. |
IRepositoryEntity |
TargetColumn.getSecurityContainer() |
IRepositoryEntity |
TargetMapping.getSecurityContainer() |
| Uses of IRepositoryEntity in oracle.odi.domain.runtime.loadplan |
|---|
| Classes in oracle.odi.domain.runtime.loadplan that implement IRepositoryEntity | |
|---|---|
class |
OdiCaseElseThis class represents the 'else' clause in a "case-when-else" step of an OdiLoadPlan. |
class |
OdiCaseWhenThis class represents the 'when' clause in a "case-when-else" step of an OdiLoadPlan. |
class |
OdiLoadPlanAn OdiLoadPlan is the root entity of the Load Plan aggregate. |
class |
OdiLoadPlanCaseConditionAbstract class representing the clauses available in a stepCase (Case-when-else). |
class |
OdiLoadPlanElementAbstract class representing an object in the OdiLoadPlan hierarchy of steps |
class |
OdiLoadPlanExceptionAn OdiLoadPlanException represents some action that can be executed when the OdiLoadPlan faces an error.On each step, the OdiLoadPlan can define an OdiLoadPlanException to be executed in such a case.The OdiLoadPlan manages a list of OdiLoadPlanException. |
class |
OdiLoadPlanScheduleOdiLoadPlanSchedule is an execution schedule attached to the concrete OdiLoadPlan, specified on the object construction. |
class |
OdiLoadPlanStepThe OdiLoadPlanStep is an abstract class for the steps of the aggregate OdiLoadPlan.The implementations are: OdiLoadPlanStepSerial OdiLoadPlanStepParallel OdiLoadPlanStepCase OdiLoadPlanStepRunScenario |
class |
OdiLoadPlanStepCaseAn OdiLoadPlanStepCase is one of the OdiLoadPlanStepCase.It represents an aggregate "case-when*-else" (* there can be multiple when clauses). |
class |
OdiLoadPlanStepContainerThis abstract class represents the steps that serve as container for other steps. |
class |
OdiLoadPlanStepParallelConcrete class for OdiLoadPlanStep describing the execution of children step in parallel. |
class |
OdiLoadPlanStepRunScenarioConcrete class for OdiLoadPlanStep defining the execution of an OdiScenario |
class |
OdiLoadPlanStepSerialConcrete class for OdiLoadPlanStep describing the execution of children steps in a given order. |
class |
OdiLoadPlanStepVariableThis class represents the association between an OdiLoadPlanVariable and an OdiLoadPlanStep. |
class |
OdiLoadPlanVariableThe OdiLoadPlanVariable is the inclusion of an OdiVariable in the context of an OdiLoadPlan. |
| Methods in oracle.odi.domain.runtime.loadplan that return IRepositoryEntity | |
|---|---|
IRepositoryEntity |
OdiLoadPlan.getSecurityContainer() |
IRepositoryEntity |
OdiLoadPlanElement.getSecurityContainer() |
IRepositoryEntity |
OdiLoadPlanSchedule.getSecurityContainer() |
IRepositoryEntity |
OdiLoadPlanStepVariable.getSecurityContainer() |
IRepositoryEntity |
OdiLoadPlanVariable.getSecurityContainer() |
| Uses of IRepositoryEntity in oracle.odi.domain.runtime.lpi |
|---|
| Classes in oracle.odi.domain.runtime.lpi that implement IRepositoryEntity | |
|---|---|
class |
OdiCaseElseInstanceThis class represents the OdiLoadPlanCaseElse class in the OdiLoadPlanInstance hierarchy |
class |
OdiCaseWhenInstanceThis class represents the OdiCaseWhen class in the OdiLoadPlanInstance hierarchy |
class |
OdiLoadPlanInstanceThe OdiLoadPlanInstance represents the state of an OdiLoadPlan once it's started. Its main use is to keep an history of a load plan start, in order to be able to restart it in the same state. |
class |
OdiLoadPlanInstanceCaseConditionAbstract class representing the clauses available in a stepCase (Case-when-else). |
class |
OdiLoadPlanInstanceElementAbstract class representing an object in the OdiLoadPlanInstance hierarchy of steps |
class |
OdiLoadPlanInstanceExceptionThis class represents the OdiLoadPlanException class in the OdiLoadPlanInstance hierarchy |
class |
OdiLoadPlanInstanceExceptionLogThis class represents the logs for the execution of an exception when the execution of a step of the load plan failed. |
class |
OdiLoadPlanInstanceExceptionVariableLog |
class |
OdiLoadPlanInstanceRunClass representing the attempt to execute an OdiLoadPlanInstance |
class |
OdiLoadPlanInstanceStepThis class represents the OdiLoadPlanStep class in the OdiLoadPlanInstance hierarchy |
class |
OdiLoadPlanInstanceStepCaseThis class represents the OdiLoadPlanStepCase class in the OdiLoadPlanInstance hierarchy |
class |
OdiLoadPlanInstanceStepContainerThis abstract class represents the steps that serve as container for other steps. |
class |
OdiLoadPlanInstanceStepLog |
class |
OdiLoadPlanInstanceStepParallelThis class represents the OdiLoadPlanStepParallel class in the OdiLoadPlanInstance hierarchy |
class |
OdiLoadPlanInstanceStepRunScenarioThis class represents the OdiLoadPlanStepRunScenario class in the OdiLoadPlanInstance hierarchy |
class |
OdiLoadPlanInstanceStepSerialThis class represents the OdiLoadPlanStepSerial class in the OdiLoadPlanInstance hierarchy |
class |
OdiLoadPlanInstanceStepVariableThis class represents the OdiLoadPlanStepVariable class in the OdiLoadPlanInstance hierarchy |
class |
OdiLoadPlanInstanceVariableThis class represents the OdiLoadPlanVariable class in the OdiLoadPlanInstance hierarchy |
class |
OdiLoadPlanInstanceVariableLog |
| Methods in oracle.odi.domain.runtime.lpi that return IRepositoryEntity | |
|---|---|
IRepositoryEntity |
OdiLoadPlanInstance.getSecurityContainer() |
IRepositoryEntity |
OdiLoadPlanInstanceElement.getSecurityContainer() |
IRepositoryEntity |
OdiLoadPlanInstanceExceptionLog.getSecurityContainer() |
IRepositoryEntity |
OdiLoadPlanInstanceExceptionVariableLog.getSecurityContainer() |
IRepositoryEntity |
OdiLoadPlanInstanceRun.getSecurityContainer() |
IRepositoryEntity |
OdiLoadPlanInstanceStepLog.getSecurityContainer() |
IRepositoryEntity |
OdiLoadPlanInstanceStepVariable.getSecurityContainer() |
IRepositoryEntity |
OdiLoadPlanInstanceVariable.getSecurityContainer() |
IRepositoryEntity |
OdiLoadPlanInstanceVariableLog.getSecurityContainer() |
| Uses of IRepositoryEntity in oracle.odi.domain.runtime.scenario |
|---|
| Classes in oracle.odi.domain.runtime.scenario that implement IRepositoryEntity | |
|---|---|
class |
OdiScenarioAn ODI Scenario is designed to put a source component (interface, package, procedure, variable) into production. |
class |
OdiScenarioFolder* |
class |
OdiScenarioReportDefines execution report of an OdiScenario. |
class |
OdiScenarioScheduleOdiScenarioSchedule is an execution schedule attached to the concrete OdiScenario, specified on the object construction. |
class |
OdiScenarioSequenceDefines a sequence inside an OdiScenario. |
class |
OdiScenarioVariableDefines a variable inside an OdiScenario and is part of the OdiScenario - OdiScenarioVariable - OdiScenarioSequence - OdiScenarioReport aggregate. |
class |
OdiStepReportDefines execution report of an OdiScenario's step. |
| Methods in oracle.odi.domain.runtime.scenario that return IRepositoryEntity | |
|---|---|
IRepositoryEntity |
OdiScenario.getSecurityContainer() |
IRepositoryEntity |
OdiScenarioFolder.getSecurityContainer() |
IRepositoryEntity |
OdiScenarioReport.getSecurityContainer() |
IRepositoryEntity |
OdiScenarioSchedule.getSecurityContainer() |
IRepositoryEntity |
OdiScenarioSequence.getSecurityContainer() |
IRepositoryEntity |
OdiScenarioVariable.getSecurityContainer() |
IRepositoryEntity |
OdiStepReport.getSecurityContainer() |
| Uses of IRepositoryEntity in oracle.odi.domain.runtime.scheduling |
|---|
| Classes in oracle.odi.domain.runtime.scheduling that implement IRepositoryEntity | |
|---|---|
class |
OdiJobStartupParamOdiJobStartupParam is the representation of startup parameter for OdiSession or OdiLoadPlanInstance. |
class |
OdiScheduleAbstract high-level object encompassing ODI Scenario Schedule and ODI Load Plan Schedule. |
| Methods in oracle.odi.domain.runtime.scheduling that return IRepositoryEntity | |
|---|---|
IRepositoryEntity |
OdiJobStartupParam.getSecurityContainer() |
| Uses of IRepositoryEntity in oracle.odi.domain.runtime.sequence |
|---|
| Classes in oracle.odi.domain.runtime.sequence that implement IRepositoryEntity | |
|---|---|
class |
OdiStandardSequenceValueOdiStandardSequenceValue class represents current value of ODI sequences of SequenceType.STANDARD type. |
| Methods in oracle.odi.domain.runtime.sequence that return IRepositoryEntity | |
|---|---|
IRepositoryEntity |
OdiStandardSequenceValue.getSecurityContainer() |
| Uses of IRepositoryEntity in oracle.odi.domain.runtime.session |
|---|
| Classes in oracle.odi.domain.runtime.session that implement IRepositoryEntity | |
|---|---|
class |
OdiSessionAn OdiSession is an execution (of a scenario, an interface, a package or a procedure, ...) undertaken by an execution agent. |
class |
OdiSessionFolderAn OdiSessionFolder is used to group OdiSession using predefined Keywords. |
class |
OdiSessionSequenceDefines a sequence inside an OdiSession and is part of the session aggregate. |
class |
OdiSessionStepLogExecution log of an OdiSession's step. |
class |
OdiSessionTaskLogExecution log of an OdiSession's task. |
class |
OdiSessionVariableDefines a variable inside an OdiSession and is part of the OdiSession - OdiSessionVariable - OdiSessionStepLog aggregate. |
| Methods in oracle.odi.domain.runtime.session that return IRepositoryEntity | |
|---|---|
IRepositoryEntity |
OdiSession.getSecurityContainer() |
IRepositoryEntity |
OdiSessionFolder.getSecurityContainer() |
IRepositoryEntity |
OdiSessionSequence.getSecurityContainer() |
IRepositoryEntity |
OdiSessionStepLog.getSecurityContainer() |
IRepositoryEntity |
OdiSessionTaskLog.getSecurityContainer() |
IRepositoryEntity |
OdiSessionVariable.getSecurityContainer() |
| Uses of IRepositoryEntity in oracle.odi.domain.runtime.variable |
|---|
| Classes in oracle.odi.domain.runtime.variable that implement IRepositoryEntity | |
|---|---|
class |
OdiVariableValueAn OdiVariableValue is used to store a value taken by a variable during execution when defined as oracle.odi.domain.runtime.variable.Action.HISTORIZE or oracle.odi.domain.runtime.variable.Action.LATEST_VALUE. |
| Methods in oracle.odi.domain.runtime.variable that return IRepositoryEntity | |
|---|---|
IRepositoryEntity |
OdiVariableValue.getSecurityContainer() |
| Uses of IRepositoryEntity in oracle.odi.domain.security |
|---|
| Classes in oracle.odi.domain.security that implement IRepositoryEntity | |
|---|---|
class |
OdiUserThe OdiUser class contains informations about a user including password and supervisor. |
| Methods in oracle.odi.domain.security that return IRepositoryEntity | |
|---|---|
IRepositoryEntity |
OdiUser.getSecurityContainer()Return the parent object. |
| Uses of IRepositoryEntity in oracle.odi.domain.support |
|---|
| Classes in oracle.odi.domain.support that implement IRepositoryEntity | |
|---|---|
class |
oracle.odi.domain.support.AbstractOdiEntity |
class |
oracle.odi.domain.support.AbstractRepositoryEntity |
| Uses of IRepositoryEntity in oracle.odi.domain.topology |
|---|
| Classes in oracle.odi.domain.topology that implement IRepositoryEntity | |
|---|---|
class |
AbstractOdiDataServerAbstract root class for OdiDataServer and OdiRepositoryServer . |
class |
OdiContextAn ODI Context. |
class |
OdiContextualAgentMappingAgent mapping between a physical agent and a logical agent applying for an ODI context. |
class |
OdiContextualSchemaMappingSchema mapping between physical schema and logical schema applying for an ODI context. |
class |
OdiDataServerAn OdiDataServer is a data server that is defined for a technology into the physical topology of ODI. |
class |
OdiDataTypeAn OdiDataType is a domain entity describing a single data type defined for an ODI technology. |
class |
OdiEnterpriseSchedulerODI domain object representing an ODI enterprise scheduler. |
class |
OdiFlexFieldAn ODI Flex Field enabling generic/flexible definition of custom informations for an ODI entity (aka IOdiEntity). |
class |
OdiIndexTypeAn OdiIndexType is a domain entity describing a single type of SGBDR index for an ODI technology. |
class |
OdiLanguageElementImplOdiLanguageElementImpl class represents ODI language element implemented by some technology, allows overriding language element's properties on per-technology basis. |
class |
OdiLanguageImplOdiLanguageImpl class represents ODI language implemented by some technology, allows overriding language settings on per-technology basis. |
class |
OdiLogicalAgentAn ODI logical agent to be used as reference to an OdiPhysicalAgent for a given OdiContext. |
class |
OdiLogicalSchemaAn ODI logical schema. |
class |
OdiMasterRepositoryInfoMetadata about an ODI Master Repository. |
class |
OdiPhysicalAgentAn ODI physical agent, holding metadata about a deployed runtime agent. |
class |
OdiPhysicalAgentDataSourceOdiPhysicalAgentDataSource allows to override connection settings of an AbstractOdiDataServer with J2EE DataSource settings for an ODI agent deployed into a J2EE server. |
class |
OdiPhysicalSchemaAn OdiPhysicalSchema is a physical schema defined for a data server into the physical topology of ODI. |
class |
OdiRepositoryServerAn OdiRepositoryServer. |
class |
OdiTechnologyA technology that is defined within the physical topology provided by ODI. |
class |
OdiWorkRepositoryInfoMetadata about an ODI Work Repository. |
| Uses of IRepositoryEntity in oracle.odi.missingref |
|---|
| Methods in oracle.odi.missingref that return types with arguments of type IRepositoryEntity | |
|---|---|
java.lang.Class<? extends IRepositoryEntity> |
IMissingRef.getMissingEntityClass()Returns the class of the object referenced by the missing reference. |
java.lang.Class<? extends IRepositoryEntity> |
IMissingRef.getSourceEntityClass()Returns the class of the object holding the missing reference. |
| Uses of IRepositoryEntity in oracle.odi.missingref.support |
|---|
| Methods in oracle.odi.missingref.support that return types with arguments of type IRepositoryEntity | |
|---|---|
java.lang.Class<? extends IRepositoryEntity> |
DefaultMissingRef.getMissingEntityClass()Returns the missing entity class value. |
java.lang.Class<? extends IRepositoryEntity> |
DefaultMissingRef.getSourceEntityClass()Returns the source entity class value. |
| Methods in oracle.odi.missingref.support with parameters of type IRepositoryEntity | |
|---|---|
IMissingRef[] |
MissingRefManager.getMissingRefsForObject(IRepositoryEntity pRepositoryEntity)Returns the missing refs managed in this manager whose origin entity is this one. |
| Method parameters in oracle.odi.missingref.support with type arguments of type IRepositoryEntity | |
|---|---|
java.util.Collection<IMissingRef> |
MissingRefServiceImpl.findEntityMissingReferences(java.lang.Class<? extends IRepositoryEntity> pOdiEntityClass, java.io.Serializable pOdiEntityId, boolean pApplyToChildren) |
void |
DefaultMissingRef.setMissingEntityClass(java.lang.Class<? extends IRepositoryEntity> pMissingEntityClass)Specifies the missing entity class value. |
void |
DefaultMissingRef.setSourceEntityClass(java.lang.Class<? extends IRepositoryEntity> pSourceEntityClass)Specifies the source entity class value. |
|
Oracle® Data Integrator Java API Reference 11g Release 1 (11.1.1.6.0) E17060-03 |
|||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||