public interface IOwbRuntimeRepositoryExplorer
| Modifier and Type | Method and Description |
|---|---|
java.util.Collection |
getAllExecTasks(oracle.odi.owb.model.OwbLocation pLocation)
Fetches all
OwbExecTasks deployed to specified OwbLocation. |
java.util.Collection |
getAllLocations()
Fetches all
OwbLocations defined within explored OWB Workspace. |
oracle.odi.owb.model.OwbExecTask |
getExecTask(oracle.odi.owb.model.OwbLocation pLocation,
java.lang.String pExecTaskName)
Fetches
OwbExecTask with specified name and deployed to specified OwbLocation. |
java.util.List |
getExecTaskParameters(oracle.odi.owb.model.OwbExecTask pExecTask)
Fetches all
OwbExecTaskParameters of specified OwbExecTask ordered by name. |
java.util.Collection |
getExecTasks(oracle.odi.owb.model.OwbLocation pLocation,
oracle.odi.owb.model.OwbTaskType pExecTaskType)
Fetches all
OwbExecTasks of specified type and deployed to specified OwbLocation. |
oracle.odi.owb.model.OwbLocation |
getLocation(java.lang.String pLocationName)
Fetches
OwbLocation by specified name. |
java.util.Collection getAllLocations()
throws OwbAccessException
OwbLocations defined within explored OWB Workspace.OwbLocationsOwbAccessException - if error occurs on accessing the OWB Workspace.oracle.odi.owb.model.OwbLocation getLocation(java.lang.String pLocationName)
throws OwbAccessException
OwbLocation by specified name.pLocationName - nameOwbLocationOwbAccessException - if error occurs on accessing the OWB Workspace.java.util.Collection getAllExecTasks(oracle.odi.owb.model.OwbLocation pLocation)
throws OwbAccessException
OwbExecTasks deployed to specified OwbLocation.pLocation - target OwbLocationOwbExecTasksOwbAccessException - if error occurs on accessing the OWB Workspace.oracle.odi.owb.model.OwbExecTask getExecTask(oracle.odi.owb.model.OwbLocation pLocation,
java.lang.String pExecTaskName)
throws OwbAccessException
OwbExecTask with specified name and deployed to specified OwbLocation.pLocation - target OwbLocationpExecTaskName - task nameOwbExecTaskOwbAccessException - if error occurs on accessing the OWB Workspace.java.util.Collection getExecTasks(oracle.odi.owb.model.OwbLocation pLocation,
oracle.odi.owb.model.OwbTaskType pExecTaskType)
throws OwbAccessException
OwbExecTasks of specified type and deployed to specified OwbLocation.pLocation - target OwbLocationpExecTaskType - task typeOwbExecTasksOwbAccessException - if error occurs on accessing the OWB Workspace.java.util.List getExecTaskParameters(oracle.odi.owb.model.OwbExecTask pExecTask)
throws OwbAccessException
OwbExecTaskParameters of specified OwbExecTask ordered by name.pExecTask - OwbExecTaskOwbExecTaskParametersOwbAccessException - if error occurs on accessing the OWB Workspace.