public interface IOwbRuntimeRepositoryExplorer
| Modifier and Type | Method and Description |
|---|---|
java.util.Collection |
getAllExecTasks(OwbLocation pLocation)
Fetches all
OwbExecTasks deployed to specified OwbLocation. |
java.util.Collection |
getAllLocations()
Fetches all
OwbLocations defined within explored OWB Workspace. |
OwbExecTask |
getExecTask(OwbLocation pLocation,
java.lang.String pExecTaskName)
Fetches
OwbExecTask with specified name and deployed to specified OwbLocation. |
java.util.List |
getExecTaskParameters(OwbExecTask pExecTask)
Fetches all
OwbExecTaskParameters of specified OwbExecTask ordered by name. |
java.util.Collection |
getExecTasks(OwbLocation pLocation,
OwbTaskType pExecTaskType)
Fetches all
OwbExecTasks of specified type and deployed to specified OwbLocation. |
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.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(OwbLocation pLocation)
throws OwbAccessException
OwbExecTasks deployed to specified OwbLocation.pLocation - target OwbLocationOwbExecTasksOwbAccessException - if error occurs on accessing the OWB Workspace.OwbExecTask getExecTask(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(OwbLocation pLocation,
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(OwbExecTask pExecTask)
throws OwbAccessException
OwbExecTaskParameters of specified OwbExecTask ordered by name.pExecTask - OwbExecTaskOwbExecTaskParametersOwbAccessException - if error occurs on accessing the OWB Workspace.