Package org.osgi.service.tr069todmt
Interface ParameterValue
-
public interface ParameterValue
Maps to the TR-069ParameterValueStruct
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getPath()
This is the path of a Parameter.int
getType()
The type of the parameter.java.lang.String
getValue()
This is the value of the parameter.
-
-
-
Method Detail
-
getPath
java.lang.String getPath()
This is the path of a Parameter. In TR-069 this is called the Parameter Name.- Returns:
- The path of the parameter
-
getValue
java.lang.String getValue()
This is the value of the parameter. The returned value must be in a representation defined by the TR-069 protocol.- Returns:
- The value of the parameter
-
getType
int getType()
The type of the parameter. One ofTR069Connector.TR069_INT
,TR069Connector.TR069_UNSIGNED_INT
,TR069Connector.TR069_LONG
,TR069Connector.TR069_UNSIGNED_LONG
,TR069Connector.TR069_STRING
,TR069Connector.TR069_DATETIME
,TR069Connector.TR069_BASE64
,TR069Connector.TR069_HEXBINARY
. This method is not part of theParameterValueStruct
but is necessary to encode the type in the XML.- Returns:
- The parameter type
-
-