| org.springframework.ws.soap.SoapElement
All known Subclasses: org.springframework.ws.soap.saaj.SaajSoapElement, org.springframework.ws.soap.axiom.AxiomSoapElement,
SoapElement | public interface SoapElement (Code) | | The base interface for all elements that are contained in a SOAP message.
author: Arjen Poutsma See Also: SoapMessage since: 1.0.0 |
addAttribute | void addAttribute(QName name, String value)(Code) | | Adds an attribute with the specified qualified name and value to this element.
Parameters: name - the qualified name of the attribute Parameters: value - the value of the attribute |
getAllAttibutes | Iterator getAllAttibutes()(Code) | | Returns an Iterator over all of the attributes in element as
QName qualified names .
an iterator over all the attribute names |
getAttributeValue | String getAttributeValue(QName name)(Code) | | Returns the value of the attribute with the specified qualified name.
Parameters: name - the qualified name the value, or null if there is no such attribute |
getName | QName getName()(Code) | | Returns the qualified name of this element.
the qualified name of this element |
getSource | Source getSource()(Code) | | Returns the Source of this element. This includes the element itself, i.e.
SoapEnvelope.getSource() will include the Envelope tag.
the Source of this element |
removeAttribute | void removeAttribute(QName name)(Code) | | Removes the attribute with the specified name.
Parameters: name - the qualified name of the attribute to remove |
|
|