Package | Description |
---|---|
oracle.odi.domain.project |
This package contains the Oracle Data Integrator Project implementation.
|
Modifier and Type | Method and Description |
---|---|
Step |
OdiPackage.getFirstStep()
Returns the first step that has to be executed for this package.
|
Step |
Step.getNextStepAfterFailure()
Obtains the step that has to be executed after this one in case of failure.
|
Step |
Step.getNextStepAfterSuccess()
Returns the step that has to be executed after this one in case of success.
|
Step |
OdiDesigntimeBreakpoint.getStep()
|
Modifier and Type | Method and Description |
---|---|
OdiDesigntimeBreakpoint |
OdiPackage.getBreakpointOn(Step pStep)
Returns breakpoint set on the step specified if any and
null
otherwise. |
void |
OdiPackage.removeBreakpointOn(Step pStep)
Removes breakpoint on the step specified.
|
void |
OdiPackage.removeStep(Step pStep)
Remove the given step from this
OdiPackage instance. |
OdiDesigntimeBreakpoint |
OdiPackage.setBreakpointOn(Step pStep)
Sets breakpoint on the step specified.
|
void |
OdiPackage.setFirstStep(Step pFirstStep)
Defines the first step that will be executed within this package.
|
void |
Step.setNextStepAfterFailure(Step pNextStepAfterFailure)
Sets the
Step that has to be executed after this one in case of failure. |
void |
Step.setNextStepAfterSuccess(Step pNextStepAfterSuccess)
Sets the step that has to be executed after this one, if it succeeds.
|