|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface SoapElement
The base interface for all elements that are contained in a SOAP message.
SoapMessage
Method Summary | |
---|---|
void |
addAttribute(javax.xml.namespace.QName name,
java.lang.String value)
Adds an attribute with the specified qualified name and value to this element. |
java.util.Iterator |
getAllAttibutes()
Returns an Iterator over all of the attributes in element as qualified names . |
java.lang.String |
getAttributeValue(javax.xml.namespace.QName name)
Returns the value of the attribute with the specified qualified name. |
javax.xml.namespace.QName |
getName()
Returns the qualified name of this element. |
javax.xml.transform.Source |
getSource()
Returns the Source of this element. |
void |
removeAttribute(javax.xml.namespace.QName name)
Removes the attribute with the specified name. |
Method Detail |
---|
javax.xml.namespace.QName getName()
javax.xml.transform.Source getSource()
Source
of this element. This includes the element itself, i.e.
SoapEnvelope.getSource()
will include the Envelope
tag.
Source
of this elementvoid addAttribute(javax.xml.namespace.QName name, java.lang.String value)
name
- the qualified name of the attributevalue
- the value of the attributevoid removeAttribute(javax.xml.namespace.QName name)
name
- the qualified name of the attribute to removejava.lang.String getAttributeValue(javax.xml.namespace.QName name)
name
- the qualified name
null
if there is no such attributejava.util.Iterator getAllAttibutes()
Iterator
over all of the attributes in element as qualified names
.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |