Package | Description |
---|---|
com.arjuna.mw.wst.common | |
javax.xml.soap |
Provides the API for creating and building SOAP messages.
|
org.jboss.ws.core.soap | |
org.jboss.ws.core.soap.utils | |
org.jboss.ws.core.utils |
Modifier and Type | Method and Description |
---|---|
static Iterator |
SOAPUtil.getChildElements(SOAPElement soapElement)
Get an iterator containing just child elements.
|
Modifier and Type | Interface and Description |
---|---|
interface |
Detail
A container for
DetailEntry objects. |
interface |
DetailEntry
The content for a
Detail object, giving details for
a SOAPFault object. |
interface |
SOAPBody
An object that represents the contents of the SOAP body
element in a SOAP message.
|
interface |
SOAPBodyElement
A
SOAPBodyElement object represents the contents in
a SOAPBody object. |
interface |
SOAPEnvelope
The container for the SOAPHeader and SOAPBody portions of a
SOAPPart object. |
interface |
SOAPFault
An element in the
SOAPBody object that contains
error and/or status information. |
interface |
SOAPFaultElement
A representation of the contents in
a
SOAPFault object. |
interface |
SOAPHeader
A representation of the SOAP header
element.
|
interface |
SOAPHeaderElement
An object representing the contents in the SOAP header part of the
SOAP envelope.
|
Modifier and Type | Method and Description |
---|---|
SOAPElement |
SOAPElement.addAttribute(Name name,
String value)
Adds an attribute with the specified name and value to this
SOAPElement object. |
SOAPElement |
SOAPElement.addAttribute(QName qname,
String value)
Adds an attribute with the specified name and value to this
SOAPElement object. |
SOAPElement |
SOAPElement.addChildElement(Name name)
Creates a new
SOAPElement object initialized with the
given Name object and adds the new element to this
SOAPElement object. |
SOAPElement |
SOAPElement.addChildElement(QName qname)
Creates a new
SOAPElement object initialized with the given
QName object and adds the new element to this SOAPElement
object. |
SOAPElement |
SOAPElement.addChildElement(SOAPElement element)
Add a
SOAPElement as a child of this
SOAPElement instance. |
SOAPElement |
SOAPElement.addChildElement(String localName)
Creates a new
SOAPElement object initialized with the
specified local name and adds the new element to this
SOAPElement object. |
SOAPElement |
SOAPElement.addChildElement(String localName,
String prefix)
Creates a new
SOAPElement object initialized with the
specified local name and prefix and adds the new element to this
SOAPElement object. |
SOAPElement |
SOAPElement.addChildElement(String localName,
String prefix,
String uri)
Creates a new
SOAPElement object initialized with the
specified local name, prefix, and URI and adds the new element to this
SOAPElement object. |
SOAPElement |
SOAPElement.addNamespaceDeclaration(String prefix,
String uri)
Adds a namespace declaration with the specified prefix and URI to this
SOAPElement object. |
SOAPElement |
SOAPElement.addTextNode(String text)
Creates a new
Text object initialized with the given
String and adds it to this SOAPElement object. |
SOAPElement |
SOAPElementFactory.create(Name name)
Deprecated.
Use
javax.xml.soap.SOAPFactory.createElement(javax.xml.soap.Name)
instead
|
SOAPElement |
SOAPElementFactory.create(String localName)
Deprecated.
Use
javax.xml.soap.SOAPFactory.createElement(String localName) instead
|
SOAPElement |
SOAPElementFactory.create(String localName,
String prefix,
String uri)
Deprecated.
Use
javax.xml.soap.SOAPFactory.createElement(String localName,
String prefix,
String uri)
instead
|
SOAPElement |
SOAPFactory.createElement(Element domElement)
Creates a
SOAPElement object from an existing DOM
Element . |
abstract SOAPElement |
SOAPFactory.createElement(Name name)
Creates a
SOAPElement object initialized with the
given Name object. |
SOAPElement |
SOAPFactory.createElement(QName qname)
Creates a
SOAPElement object initialized with the
given QName object. |
abstract SOAPElement |
SOAPFactory.createElement(String localName)
Creates a
SOAPElement object initialized with the
given local name. |
abstract SOAPElement |
SOAPFactory.createElement(String localName,
String prefix,
String uri)
Creates a new
SOAPElement object with the given
local name, prefix and uri. |
SOAPElement |
Node.getParentElement()
Returns the parent element of this
Node object. |
SOAPElement |
SOAPElement.setElementQName(QName newName)
Changes the name of this
Element to newName if
possible. |
Modifier and Type | Method and Description |
---|---|
SOAPElement |
SOAPElement.addChildElement(SOAPElement element)
Add a
SOAPElement as a child of this
SOAPElement instance. |
abstract AttachmentPart |
SOAPMessage.getAttachment(SOAPElement element)
Returns an
AttachmentPart object that is associated with an
attachment that is referenced by this SOAPElement or
null if no such attachment exists. |
void |
Node.setParentElement(SOAPElement parent)
Sets the parent of this
Node object to the given
SOAPElement object. |
Constructor and Description |
---|
SAAJResult(SOAPElement rootNode)
Creates a
SAAJResult that will write the results as a
child node of the SOAPElement specified. |
Modifier and Type | Class and Description |
---|---|
class |
DetailEntryImpl
The content for a Detail object, giving details for a SOAPFault object.
|
class |
DetailImpl
A container for DetailEntry objects.
|
class |
SOAPBodyElementDoc
An abstract implemenation of the SOAPBodyElement
This class should not expose functionality that is not part of
SOAPBodyElement . |
class |
SOAPBodyElementMessage
An abstract implemenation of the SOAPBodyElement
This class should not expose functionality that is not part of
SOAPBodyElement . |
class |
SOAPBodyElementRpc
An abstract implemenation of the SOAPBodyElement
This class should not expose functionality that is not part of
SOAPBodyElement . |
class |
SOAPBodyImpl
An object that represents the contents of the SOAP body element in a SOAP message.
|
class |
SOAPContentElement
A SOAPElement that gives access to its content as XML fragment or Java object.
|
class |
SOAPElementImpl
An object representing an element of a SOAP message that is allowed but not specifically prescribed by a
SOAP specification.
|
class |
SOAPEnvelopeImpl
The container for the SOAPHeader and SOAPBody portions of a SOAPPart object.
|
class |
SOAPFaultElementImpl |
class |
SOAPFaultImpl
An element in the SOAPBody object that contains error and/or status information.
|
class |
SOAPHeaderElementImpl
An object representing the contents in the SOAP header part of the SOAP envelope.
|
class |
SOAPHeaderImpl
A representation of the SOAP header element.
|
Modifier and Type | Method and Description |
---|---|
SOAPElement |
SOAPEnvelopeImpl.addAttribute(Name name,
String value) |
SOAPElement |
SOAPElementImpl.addAttribute(Name name,
String value)
Adds an attribute with the specified name and value to this SOAPElement object.
|
SOAPElement |
SOAPContentElement.addAttribute(Name name,
String value) |
SOAPElement |
SOAPBodyImpl.addAttribute(Name name,
String value) |
SOAPElement |
SOAPElementImpl.addAttribute(QName qname,
String value) |
SOAPElement |
SOAPElementImpl.addChildElement(Name name)
Creates a new SOAPElement object initialized with the given Name object and adds the new element to this SOAPElement object.
|
SOAPElement |
SOAPContentElement.addChildElement(Name name) |
SOAPElement |
SOAPElementImpl.addChildElement(QName qname) |
SOAPElement |
SOAPHeaderImpl.addChildElement(SOAPElement child)
Add a SOAPHeaderElement as a child of this SOAPHeader instance.
|
SOAPElement |
SOAPFaultImpl.addChildElement(SOAPElement child) |
SOAPElement |
SOAPEnvelopeImpl.addChildElement(SOAPElement child)
Make sure the child is either a SOAPHeader or SOAPBody
|
SOAPElement |
SOAPElementImpl.addChildElement(SOAPElement child)
Add a SOAPElement as a child of this SOAPElement instance.
|
SOAPElement |
SOAPContentElement.addChildElement(SOAPElement child) |
SOAPElement |
SOAPBodyImpl.addChildElement(SOAPElement child)
Convert the child into a SOAPBodyElement
|
SOAPElement |
DetailImpl.addChildElement(SOAPElement child) |
SOAPElement |
SOAPElementImpl.addChildElement(String name)
Creates a new SOAPElement object initialized with the specified local name and adds the new element to this SOAPElement object.
|
SOAPElement |
SOAPContentElement.addChildElement(String name) |
SOAPElement |
SOAPElementImpl.addChildElement(String localName,
String prefix)
Creates a new SOAPElement object initialized with the specified local name and prefix and adds the new element to this SOAPElement object.
|
SOAPElement |
SOAPContentElement.addChildElement(String localName,
String prefix) |
SOAPElement |
SOAPElementImpl.addChildElement(String localName,
String prefix,
String uri)
Creates a new SOAPElement object initialized with the specified local name, prefix, and URI and adds the new element to this SOAPElement object.
|
SOAPElement |
SOAPContentElement.addChildElement(String localName,
String prefix,
String uri) |
SOAPElement |
SOAPElementImpl.addNamespaceDeclaration(String prefix,
String nsURI)
Adds a namespace declaration with the specified prefix and URI to this SOAPElement object.
|
SOAPElement |
SOAPContentElement.addNamespaceDeclaration(String prefix,
String nsURI) |
SOAPElement |
SOAPHeaderImpl.addTextNode(String value)
Attaching a Text node is not legal.
|
SOAPElement |
SOAPEnvelopeImpl.addTextNode(String value)
Text nodes are not supported.
|
SOAPElement |
SOAPElementImpl.addTextNode(String value)
Creates a new Text object initialized with the given String and adds it to this SOAPElement object.
|
SOAPElement |
SOAPContentElement.addTextNode(String value) |
SOAPElement |
SOAPFactoryImpl.createElement(Element domElement) |
SOAPElement |
SOAPFactoryImpl.createElement(Element domElement,
boolean deep)
Create a SOAPElement from a DOM Element.
|
SOAPElement |
SOAPFactoryImpl.createElement(Name name) |
SOAPElement |
SOAPFactoryImpl.createElement(QName qname) |
SOAPElement |
SOAPFactoryImpl.createElement(String localName) |
SOAPElement |
SOAPFactoryImpl.createElement(String localName,
String prefix,
String uri) |
protected SOAPElement |
SOAPElementImpl.getFirstChildElementByLocalName(String localName) |
SOAPElement |
SOAPPartImpl.getParentElement() |
SOAPElement |
NodeImpl.getParentElement()
Returns the parent node of this Node object.
|
SOAPElement |
SOAPElementImpl.setElementQName(QName qname)
Changes the name of this Element to newName if possible.
|
SOAPElement |
SOAPElementImpl.setElementQNameInternal(QName qname) |
Modifier and Type | Method and Description |
---|---|
Iterator<SOAPElement> |
SOAPElementImpl.getChildElements(Name name)
Returns an Iterator over all the immediate child Nodes of this element with the specified name.
|
Iterator<SOAPElement> |
SOAPContentElement.getChildElements(Name name) |
Iterator<SOAPElement> |
SOAPElementImpl.getChildElements(QName qname) |
Modifier and Type | Method and Description |
---|---|
SOAPElement |
SOAPHeaderImpl.addChildElement(SOAPElement child)
Add a SOAPHeaderElement as a child of this SOAPHeader instance.
|
SOAPElement |
SOAPFaultImpl.addChildElement(SOAPElement child) |
SOAPElement |
SOAPEnvelopeImpl.addChildElement(SOAPElement child)
Make sure the child is either a SOAPHeader or SOAPBody
|
SOAPElement |
SOAPElementImpl.addChildElement(SOAPElement child)
Add a SOAPElement as a child of this SOAPElement instance.
|
SOAPElement |
SOAPContentElement.addChildElement(SOAPElement child) |
SOAPElement |
SOAPBodyImpl.addChildElement(SOAPElement child)
Convert the child into a SOAPBodyElement
|
SOAPElement |
DetailImpl.addChildElement(SOAPElement child) |
AttachmentPart |
SOAPMessageImpl.getAttachment(SOAPElement element) |
void |
SOAPPartImpl.setParentElement(SOAPElement parent) |
void |
SOAPHeaderElementImpl.setParentElement(SOAPElement parent) |
void |
NodeImpl.setParentElement(SOAPElement parent)
Sets the parent of this Node object to the given SOAPElement object.
|
Constructor and Description |
---|
DetailEntryImpl(SOAPElement soapElement) |
Modifier and Type | Method and Description |
---|---|
void |
SOAPElementWriter.writeElement(SOAPElement element) |
static String |
SOAPElementWriter.writeElement(SOAPElement element,
boolean pretty)
Print a node with explicit prettyprinting.
|
Modifier and Type | Method and Description |
---|---|
static void |
SAAJUtils.setQualifiedAttributeValue(SOAPElement element,
String attributeName,
QName value)
Set the qname value to the specified attribute of the given element.
|
static void |
SAAJUtils.setQualifiedElementValue(SOAPElement element,
QName value)
Set the qname value to the given element.
|
Copyright © 2018 JBoss by Red Hat. All rights reserved.