public class GetParametersResult extends Object implements OperationResult
Get Parameters operation;
It contains a Vector of parameters of the connected SAP CC system.
Use the getParameters() method
to get the resulting vector.
GetParameterValueOp GetParametersOp The XML APIs specify the following XSD fragment:
XSD Fragment
<xs:element name="getParametersResult">
<xs:complexType>
<xs:sequence>
<xs:element ref="adminParameter" minOccurs="1" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
| Modifier and Type | Field and Description |
|---|---|
static String |
OPERATION_NAME
The name of this operation : "getParametersResult"
|
| Constructor and Description |
|---|
GetParametersResult() |
| Modifier and Type | Method and Description |
|---|---|
void |
addCharacterData(String cData)
Adds character data to the content element.
|
void |
addChild(String tagName,
XMLMarshallable child)
Adds a child to the object, the
child representing
the marshallable object which must be added to the element. |
void |
addParameter(AdminParameterModel model) |
String |
getName() |
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. |
Vector<String> |
getParameterNames() |
Vector<AdminParameterModel> |
getParameters() |
void |
marshal(XMLOutputter output)
Writes the operation XML data to the specified output.
|
void |
setAttributes(XMLAttributes atts)
Sets the attributes of the XML representation of the element being
processed.
|
public static final String OPERATION_NAME
public String getName()
public void addParameter(AdminParameterModel model)
public Vector<AdminParameterModel> getParameters()
public String getOperandReference()
OperationResultnull.getOperandReference in interface OperationResultpublic void setAttributes(XMLAttributes atts)
XMLMarshallablesetAttributes in interface XMLMarshallableatts - The XML attributes of the current elementpublic void addCharacterData(String cData)
XMLMarshallableaddCharacterData in interface XMLMarshallablecData - The character data to be addedpublic void addChild(String tagName, XMLMarshallable child)
XMLMarshallablechild representing
the marshallable object which must be added to the element.addChild in interface XMLMarshallabletagName - The name of tag for the childchild - The child to be addedpublic void marshal(XMLOutputter output)
marshal in interface XMLMarshallableoutput - The XMLOutputter to write into