public interface IOwbRuntimeRepositoryExplorer
Modifier and Type | Method and Description |
---|---|
java.util.Collection |
getAllExecTasks(OwbLocation pLocation)
Fetches all
OwbExecTask s deployed to specified OwbLocation . |
java.util.Collection |
getAllLocations()
Fetches all
OwbLocation s 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
OwbExecTaskParameter s of specified OwbExecTask ordered by name. |
java.util.Collection |
getExecTasks(OwbLocation pLocation,
OwbTaskType pExecTaskType)
Fetches all
OwbExecTask s 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
OwbLocation
s defined within explored OWB Workspace.OwbLocation
sOwbAccessException
- if error occurs on accessing the OWB Workspace.OwbLocation getLocation(java.lang.String pLocationName) throws OwbAccessException
OwbLocation
by specified name.pLocationName
- nameOwbLocation
OwbAccessException
- if error occurs on accessing the OWB Workspace.java.util.Collection getAllExecTasks(OwbLocation pLocation) throws OwbAccessException
OwbExecTask
s deployed to specified OwbLocation
.pLocation
- target OwbLocation
OwbExecTask
sOwbAccessException
- 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 OwbLocation
pExecTaskName
- task nameOwbExecTask
OwbAccessException
- if error occurs on accessing the OWB Workspace.java.util.Collection getExecTasks(OwbLocation pLocation, OwbTaskType pExecTaskType) throws OwbAccessException
OwbExecTask
s of specified type and deployed to specified OwbLocation
.pLocation
- target OwbLocation
pExecTaskType
- task typeOwbExecTask
sOwbAccessException
- if error occurs on accessing the OWB Workspace.java.util.List getExecTaskParameters(OwbExecTask pExecTask) throws OwbAccessException
OwbExecTaskParameter
s of specified OwbExecTask
ordered by name.pExecTask
- OwbExecTask
OwbExecTaskParameter
sOwbAccessException
- if error occurs on accessing the OWB Workspace.