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 IOdiSequenceFinder

All Superinterfaces:
IFinder

public interface IOdiSequenceFinder
extends IFinder

Finder interface for OdiSequence entity.

Since:
11.1.1.3.0

Method Summary
 java.util.Collection<OdiSequence> findAllGlobals()
          Find all global sequences.
 OdiSequence findByName(java.lang.String pName, java.lang.String pProjectCode)
          Return OdiSequences matching the specified name present in the specified project.
 java.util.Collection<OdiSequence> findByProject(java.lang.String pProjectCode)
          Find all sequences in this project.
 OdiSequence findGlobalByName(java.lang.String pName)
          Find a global sequence by name.

 

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

 

Method Detail

findAllGlobals

java.util.Collection<OdiSequence> findAllGlobals()
Find all global sequences.
Returns:
all global sequences

findGlobalByName

OdiSequence findGlobalByName(java.lang.String pName)
Find a global sequence by name.
Parameters:
pName - Name of variable
Returns:
OdiSequence
Throws:
DomainRuntimeException - if pName is null or empty.

findByName

OdiSequence findByName(java.lang.String pName,
                       java.lang.String pProjectCode)
Return OdiSequences matching the specified name present in the specified project.
Parameters:
pName - Name of OdiSequence
pProjectCode - Code of project
Returns:
OdiSequence found
Throws:
DomainRuntimeException - if pName or pProjectCode is null or empty.

findByProject

java.util.Collection<OdiSequence> findByProject(java.lang.String pProjectCode)
Find all sequences in this project.
Parameters:
pProjectCode - the project code of the project for which we want the sequences
Returns:
the list of sequences for this project
Throws:
DomainRuntimeException - if pProjectCode is null or empty.

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.