Top Description Methods
org.osgi.service.tr069todmt

public Interface ParameterInfo


Maps to the TR-069 ParameterInfoStruct that is returned from the TR069Connector#getParameterNames(String, boolean) method.

Method Summary

Modifier and TypeMethod and Description
public ParameterValue

Returns:

The Parameter Value of the corresponding object
getParameterValue
()

Provide the value of the node.

public String

Returns:

The name of the parameter
getPath
()

The path of the parameter, either a parameter path, an instance path, a table path, or an object path.

public boolean

Returns:

true for a parameter, false otherwise
isParameter
()

Returns true of this is a parameter, if it returns false it is an object or table.

public boolean

Returns:

If this parameter is writeable
isWriteable
()

Return true if this parameter is writeable, otherwise false.

Method Detail

getParameterValueback to summary
public ParameterValue getParameterValue() throws TR069Exception

Provide the value of the node. This method throws an exception if it is called for anything but a parameter

Returns:ParameterValue

The Parameter Value of the corresponding object

Exceptions
TR069Exception:
If there is a problem
getPathback to summary
public String getPath()

The path of the parameter, either a parameter path, an instance path, a table path, or an object path.

Returns:String

The name of the parameter

isParameterback to summary
public boolean isParameter()

Returns true of this is a parameter, if it returns false it is an object or table.

Returns:boolean

true for a parameter, false otherwise

isWriteableback to summary
public boolean isWriteable()

Return true if this parameter is writeable, otherwise false. A parameter is writeable if the SetParamaterValue with the given name would be successful if an appropriate value was given. If this is a table path, the method specifies whether or not AddObject would be successful. If the parameter path points to a table instance, the method specifies whether or not DeleteObject would be successful.

Returns:boolean

If this parameter is writeable