com.esf.net.netconf.service
Interface IDataStoreElement


public interface IDataStoreElement


Method Summary
 IDataStoreElement[] getChildren()
          Returns an array of IDataStoreElement objects that are children of the IDataStoreElement.
 java.lang.String getName()
          Returns the name of the IDataStoreElement.
 java.lang.String getValue()
          Returns the value of the IDataStoreElement.
 void setValue(java.lang.String value)
          Sets the value for the IDataStoreElement object.
 

Method Detail

getName

java.lang.String getName()
Returns the name of the IDataStoreElement.

Returns:
A String object representing the name.

getValue

java.lang.String getValue()
Returns the value of the IDataStoreElement.

Returns:
A String object representing the value.

setValue

void setValue(java.lang.String value)
              throws NetconfErrorException
Sets the value for the IDataStoreElement object. This method should only be used on writable data.

Parameters:
value - A String object representing the new value.
Throws:
NetconfErrorException - If element is read only.

getChildren

IDataStoreElement[] getChildren()
Returns an array of IDataStoreElement objects that are children of the IDataStoreElement.

Returns:
A array of IDataStoreElement objects.