Interface ZooInspectorNodeTreeManager
-
- All Superinterfaces:
ZooInspectorReadOnlyManager
- All Known Subinterfaces:
ZooInspectorManager
- All Known Implementing Classes:
ZooInspectorManagerImpl
public interface ZooInspectorNodeTreeManager extends ZooInspectorReadOnlyManager
A Manager for all interactions between the application and the node tree in a Zookeeper instance
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
createNode(java.lang.String parent, java.lang.String nodeName)
boolean
deleteNode(java.lang.String nodePath)
-
Methods inherited from interface org.apache.zookeeper.inspector.manager.ZooInspectorReadOnlyManager
getACLs, getChildren, getData, getNodeMeta, getNumChildren
-
-
-
-
Method Detail
-
createNode
boolean createNode(java.lang.String parent, java.lang.String nodeName)
- Parameters:
parent
- - the parent node path for the node to addnodeName
- - the name of the new node- Returns:
- true if the node was successfully created
-
deleteNode
boolean deleteNode(java.lang.String nodePath)
- Parameters:
nodePath
- - the path to the node to delete- Returns:
- true if the node was successfully deleted
-
-