1 18 19 package sync4j.syncclient.spdm; 20 21 import java.util.Hashtable ; 22 23 32 public interface ManagementNode { 33 34 39 public String getContext(); 40 41 47 public String getFullContext(); 48 49 57 public Object getValue(String name) 58 throws DMException; 59 60 61 66 public Hashtable getValues() 67 throws DMException; 68 69 70 80 public Object getNodeValue(String node, String name) 81 throws DMException; 82 83 92 public Hashtable getNodeValues(String node) 93 throws DMException; 94 95 102 public Object getManagementObject(String node) 103 throws DMException; 104 105 112 public ManagementNode[] getChildren() 113 throws DMException; 114 115 122 public ManagementNode getChildNode(String context) 123 throws DMException; 124 125 126 133 public ManagementNode getParent() 134 throws DMException; 135 136 137 145 void setValue(String name, Object value) throws DMException; 146 147 148 157 void setValue(String node, String name, Object value) throws DMException; 158 159 160 167 void removeNode(String node) throws DMException; 168 169 170 } 171 | Popular Tags |