public class ResetParameterValueResult extends ParameterOperationResult
Reset Parameter Value operation;
It is the parameter model which has been reset.
Use getParameter()
to get the resulting parameter model.
ResetParameterValueOp The XML APIs specify the following XSD fragment:
XSD Fragment
<xs:element name="resetParameterValueResult">
<xs:complexType>
<xs:sequence>
<xs:element ref="adminParameter" minOccurs="1" maxOccurs="1"/>
</xs:sequence>
</xs:complexType>
</xs:element>
| Modifier and Type | Field and Description |
|---|---|
static String |
OPERATION_ID
Mapping for the operation ID : "opID".
|
static String |
OPERATION_NAME
The name of this operation : "resetParameterValueResult".
|
| Constructor and Description |
|---|
ResetParameterValueResult() |
ResetParameterValueResult(AdminParameterModel parameter)
Initializes a new
ResetParameterValueResult instance with
a parameter name. |
| Modifier and Type | Method and Description |
|---|---|
void |
addCharacterData(String cData)
Adds string data to this operation.
|
void |
addChild(String tagName,
XMLMarshallable child)
Adds a child tag to this operation.
|
String |
getName()
Returns the name of the operation, that is "resetParameterValueResult".
|
String |
getOperandReference()
Gets the code or the reference (if no code exists) that identifies the operand of the operation request;
If the operation is not auditable, the operand reference is
null. |
String |
getOperationID()
Gets the operation id.
|
AdminParameterModel |
getParameter()
Gets the parameter.
|
void |
marshal(XMLOutputter output)
Writes the operation XML data to the given output.
|
void |
setAttributes(XMLAttributes atts)
Sets the operation attributes from the
XMLAttributes. |
void |
setOperationID(String id)
Sets the operation id.
|
setParameterpublic static final String OPERATION_NAME
public static final String OPERATION_ID
public ResetParameterValueResult()
public ResetParameterValueResult(AdminParameterModel parameter)
ResetParameterValueResult instance with
a parameter name.parameter - the parameter to be returnedpublic AdminParameterModel getParameter()
getParameter in class ParameterOperationResultpublic String getOperationID()
public void setOperationID(String id)
id - the operation id.public String getName()
public String getOperandReference()
OperationResultnull.public void setAttributes(XMLAttributes atts)
XMLAttributes.atts - the XMLAttributes containing the datapublic void addCharacterData(String cData)
This data is ignored for this operation.
cData - the character data to add to the operationpublic void addChild(String tagName, XMLMarshallable child)
For this operation, the child must be a
.ParameterModel
tagName - the name of the tagchild - the XMLMarshallable child to addpublic void marshal(XMLOutputter output)
output - the XMLOutputter to write into