Skip navigation links

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

E17060-04


oracle.odi.domain.project.finder
Interface IOdiPackageFinder

All Superinterfaces:
IFinder

public interface IOdiPackageFinder
extends IFinder

Finder interface for OdiPackage entity.

Since:
11.1.1.3.0

Method Summary
 java.util.Collection<OdiPackage> findByDataStore(java.lang.Number pDataStoreId)
          Get all OdiPackages of this type using OdiDataStore shortcut pDataStoreId as a step.
 java.util.Collection<OdiPackage> findByDataStoreShortcut(java.lang.Number pDataStoreShortcutId)
          Get all OdiPackages of this type using OdiDataStore shortcut pDataStoreShortcutId as a step.
 java.util.Collection<OdiPackage> findByInterface(java.lang.Number pInterfaceId)
          Get all OdiPackages of this type using OdiInterface pInterfaceId as a step.
 java.util.Collection<OdiPackage> findByInterfaceShortcut(java.lang.Number pInterfaceShortcutId)
          Get all OdiPackages of this type using OdiInterface shortcut InterfaceShortcutID as a step.
 java.util.Collection<OdiPackage> findByName(java.lang.String pName)
          Find the OdiPackages matching the specified name.
 java.util.Collection<OdiPackage> findByName(java.lang.String pName, java.lang.String pProjectCode)
          Return OdiPackages matching the specified name present in the specified project.
 java.util.Collection<OdiPackage> findByName(java.lang.String pName, java.lang.String pProjectCode, java.lang.String pFolderName)
          Return OdiPackages matching the specified name present in the specified project and folder.
 java.util.Collection<OdiPackage> findByProject(java.lang.String pProjectCode)
          Get all OdiPackages of this type in the given Project.
 java.util.Collection<OdiPackage> findByProject(java.lang.String pProjectCode, java.lang.String pFolderName)
          Get all OdiPackages of this type in the given Project and folder.
 java.util.Collection<OdiPackage> findByShortcutReference(java.lang.Number pOriginatorId)
          For internal use only.
 java.util.Collection<OdiPackage> findByUserProcedure(java.lang.Number pUserProcedureId)
          Get all OdiPackages of this type using OdiUserProcedure shortcut pUserProcedureId as a step.
 java.util.Collection<OdiPackage> findByUserProcedureShortcut(java.lang.Number pUserProcedureShortcutId)
          Get all OdiPackages of this type using OdiUserProcedure shortcut pUserProcedureShortcutId as a step.

 

Methods inherited from interface oracle.odi.domain.finder.IFinder
findAll, findById, findByIds

 

Method Detail

findByName

java.util.Collection<OdiPackage> findByName(java.lang.String pName)
Find the OdiPackages matching the specified name.
Parameters:
pName - name of package
Returns:
collection of OdiPackage
Throws:
DomainRuntimeException - if pName is null or empty.

findByName

java.util.Collection<OdiPackage> findByName(java.lang.String pName,
                                            java.lang.String pProjectCode)
Return OdiPackages matching the specified name present in the specified project.
Parameters:
pName - name of package
pProjectCode - code of project
Returns:
collection of OdiPackage
Throws:
DomainRuntimeException - if pName or pProjectCode is null or empty.

findByName

java.util.Collection<OdiPackage> findByName(java.lang.String pName,
                                            java.lang.String pProjectCode,
                                            java.lang.String pFolderName)
Return OdiPackages matching the specified name present in the specified project and folder. Note that folder names in a project are not necessarily unique. The results from all matching folders will be returned.
Parameters:
pName - name of package
pProjectCode - code of project
pFolderName - name of package
Returns:
collection of OdiPackage
Throws:
DomainRuntimeException - if pName, pProjectCode or pFolderName is null or empty.

findByProject

java.util.Collection<OdiPackage> findByProject(java.lang.String pProjectCode)
Get all OdiPackages of this type in the given Project.
Parameters:
pProjectCode - code of project
Returns:
collection of OdiPackage
Throws:
DomainRuntimeException - if pProjectCode is null or empty.

findByProject

java.util.Collection<OdiPackage> findByProject(java.lang.String pProjectCode,
                                               java.lang.String pFolderName)
Get all OdiPackages of this type in the given Project and folder. Note that folder names in a project are not necessarily unique. The results from all matching folders will be returned.
Parameters:
pProjectCode - code of project
pFolderName - name of package
Returns:
collection of OdiPackage
Throws:
DomainRuntimeException - if pProjectCode or pFolderName is null or empty.

findByInterface

java.util.Collection<OdiPackage> findByInterface(java.lang.Number pInterfaceId)
Get all OdiPackages of this type using OdiInterface pInterfaceId as a step.
Parameters:
pInterfaceId - id of interface
Returns:
collection of OdiPackage
Throws:
DomainRuntimeException - if pInterfaceId or pProjectCode is null or empty.

findByInterfaceShortcut

java.util.Collection<OdiPackage> findByInterfaceShortcut(java.lang.Number pInterfaceShortcutId)
Get all OdiPackages of this type using OdiInterface shortcut InterfaceShortcutID as a step.
Parameters:
pInterfaceShortcutId - id of interface
Returns:
collection of OdiPackage
Throws:
DomainRuntimeException - if pInterfaceId or pProjectCode is null or empty.

findByDataStore

java.util.Collection<OdiPackage> findByDataStore(java.lang.Number pDataStoreId)
Get all OdiPackages of this type using OdiDataStore shortcut pDataStoreId as a step.
Parameters:
pDataStoreId - id of datastore shortcut
Returns:
collection of OdiPackage
Throws:
DomainRuntimeException - if pDataStoreId or pProjectCode is null or empty.

findByDataStoreShortcut

java.util.Collection<OdiPackage> findByDataStoreShortcut(java.lang.Number pDataStoreShortcutId)
Get all OdiPackages of this type using OdiDataStore shortcut pDataStoreShortcutId as a step.
Parameters:
pDataStoreShortcutId - id of datastore shortcut
Returns:
collection of OdiPackage
Throws:
DomainRuntimeException - if pDataStoreShortcutId or pProjectCode is null or empty.

findByUserProcedure

java.util.Collection<OdiPackage> findByUserProcedure(java.lang.Number pUserProcedureId)
Get all OdiPackages of this type using OdiUserProcedure shortcut pUserProcedureId as a step.
Parameters:
pUserProcedureId - id of UserProcedure shortcut
Returns:
collection of OdiPackage
Throws:
DomainRuntimeException - if pUserProcedureId or pProjectCode is null or empty.

findByUserProcedureShortcut

java.util.Collection<OdiPackage> findByUserProcedureShortcut(java.lang.Number pUserProcedureShortcutId)
Get all OdiPackages of this type using OdiUserProcedure shortcut pUserProcedureShortcutId as a step.
Parameters:
pUserProcedureShortcutId - id of UserProcedure shortcut
Returns:
collection of OdiPackage
Throws:
DomainRuntimeException - if pUserProcedureShortcutId or pProjectCode is null or empty.

findByShortcutReference

java.util.Collection<OdiPackage> findByShortcutReference(java.lang.Number pOriginatorId)
For internal use only.

Find all shortcuts that that have pOriginatorId as a shortcut reference. This method will find all shortcuts that directly descend from this object.

Parameters:
pOriginatorId - id of the referenced object.
Returns:
Collection of OdiPackage shortcuts that descend from this object.

Skip navigation links

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

E17060-04


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