WebSphere:*,type=TargetTreeMbean
MBean TargetTreeMbean
A bean to retrive target tree information, initialized during ODR startup.
Operation Summary | |
---|---|
java.lang.String | getTargetTree() Retrieves target tree data as a string. |
java.lang.String | exportTargetTree() Writes target tree xml into file. |
java.lang.String | exportTargetTree( Writes target tree xml into file. |
void | removeNode( remove nodes from the odc tree |
void | addNode( add node to the odc tree |
void | addEdge( add edge relationship between two nodes on the odc tree |
void | removeEdge( remove edge relationship between two nodes on the odc tree |
void | modifyProperty( add/modify a node property on the odc tree |
Operation Detail |
---|
public java.lang.String getTargetTree()
Retrieves target tree data as a string.
administrator
operator
public java.lang.String exportTargetTree()
Writes target tree xml into file.
administrator
operator
public java.lang.String exportTargetTree(
java.lang.String path
)
Writes target tree xml into file.
path
-
path where file should be saved
administrator
operator
public void removeNode(
java.lang.String nodePath
)
remove nodes from the odc tree
nodePath
-
administrator
operator
public void addNode(
java.lang.String parentPath,
java.lang.String nodeType,
java.lang.String nodeName,
java.lang.String[] args
)
add node to the odc tree
parentPath
-
nodeType
-
nodeName
-
args
-
administrator
operator
public void addEdge(
java.lang.String pathA,
java.lang.String pathB
)
add edge relationship between two nodes on the odc tree
pathA
-
pathB
-
administrator
operator
public void removeEdge(
java.lang.String pathA,
java.lang.String pathB
)
remove edge relationship between two nodes on the odc tree
pathA
-
pathB
-
administrator
operator
public void modifyProperty(
java.lang.String nodePath,
java.lang.String propDesc,
java.lang.String val
)
add/modify a node property on the odc tree
nodePath
-
propDesc
-
val
-
administrator
operator