Package | Description |
---|---|
javax.xml.soap |
Provides the API for creating and building SOAP messages.
|
org.jboss.ws | |
org.jboss.ws.core.soap | |
org.jboss.ws.core.soap.utils |
Modifier and Type | Method and Description |
---|---|
abstract Name |
SOAPFactory.createName(String localName)
Creates a new
Name object initialized with the
given local name. |
Name |
SOAPEnvelope.createName(String localName)
Creates a new
Name object initialized with the
given local name. |
abstract Name |
SOAPFactory.createName(String localName,
String prefix,
String uri)
Creates a new
Name object initialized with the
given local name, namespace prefix, and namespace URI. |
Name |
SOAPEnvelope.createName(String localName,
String prefix,
String uri)
Creates a new
Name object initialized with the
given local name, namespace prefix, and namespace URI. |
Name |
SOAPElement.getElementName()
Returns the name of this
SOAPElement object. |
Name |
SOAPFault.getFaultCodeAsName()
Gets the mandatory SOAP 1.1 fault code for this
SOAPFault object as a SAAJ Name object. |
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. |
SOAPBodyElement |
SOAPBody.addBodyElement(Name name)
Creates a new
SOAPBodyElement object with the specified
name and adds it to this SOAPBody 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. |
DetailEntry |
Detail.addDetailEntry(Name name)
Creates a new
DetailEntry object with the given
name and adds it to this Detail object. |
SOAPFault |
SOAPBody.addFault(Name faultCode,
String faultString)
Creates a new
SOAPFault object and adds it to this
SOAPBody object. |
SOAPFault |
SOAPBody.addFault(Name faultCode,
String faultString,
Locale locale)
Creates a new
SOAPFault object and adds it to
this SOAPBody object. |
SOAPHeaderElement |
SOAPHeader.addHeaderElement(Name name)
Creates a new
SOAPHeaderElement object initialized with the
specified name and adds it to this SOAPHeader object. |
SOAPElement |
SOAPElementFactory.create(Name name)
Deprecated.
Use
javax.xml.soap.SOAPFactory.createElement(javax.xml.soap.Name)
instead
|
abstract SOAPElement |
SOAPFactory.createElement(Name name)
Creates a
SOAPElement object initialized with the
given Name object. |
String |
SOAPElement.getAttributeValue(Name name)
Returns the value of the attribute with the specified name.
|
Iterator |
SOAPElement.getChildElements(Name name)
Returns an
Iterator over all the immediate child
Node s of this element with the specified name. |
boolean |
SOAPElement.removeAttribute(Name name)
Removes the attribute with the specified name.
|
void |
SOAPFault.setFaultCode(Name faultCodeQName)
Sets this
SOAPFault object with the given fault code. |
Modifier and Type | Method and Description |
---|---|
WSException |
NativeMessages.cannotFindChildElement(Name name) |
Modifier and Type | Class and Description |
---|---|
class |
NameImpl
An implementation of a Name
At this time of writing, the spec does not say anything about null values.
|
Modifier and Type | Method and Description |
---|---|
Name |
SOAPFactoryImpl.createName(String localName) |
Name |
SOAPEnvelopeImpl.createName(String localName) |
Name |
SOAPFactoryImpl.createName(String localName,
String prefix,
String uri) |
Name |
SOAPEnvelopeImpl.createName(String localName,
String prefix,
String uri) |
Name |
SOAPElementImpl.getElementName()
Returns the name of this SOAPElement object.
|
Name |
SOAPContentElement.getElementName() |
Name |
SOAPFaultImpl.getFaultCodeAsName()
Gets the mandatory SOAP 1.1 fault code for this SOAPFault object as a SAAJ Name object.
|
Modifier and Type | Method and Description |
---|---|
Iterator<Name> |
SOAPElementImpl.getAllAttributes()
Returns an Iterator over all of the attribute Name objects in this SOAPElement object.
|
Iterator<Name> |
SOAPContentElement.getAllAttributes() |
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) |
SOAPBodyElement |
SOAPBodyImpl.addBodyElement(Name name) |
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) |
DetailEntry |
DetailImpl.addDetailEntry(Name name) |
SOAPFault |
SOAPBodyImpl.addFault(Name faultCode,
String faultString) |
SOAPFault |
SOAPBodyImpl.addFault(Name faultCode,
String faultString,
Locale locale) |
SOAPHeaderElement |
SOAPHeaderImpl.addHeaderElement(Name name)
Creates a new SOAPHeaderElement object initialized with the specified name and adds it to this SOAPHeader object.
|
SOAPElement |
SOAPFactoryImpl.createElement(Name name) |
String |
SOAPElementImpl.getAttributeValue(Name name)
Returns the value of the attribute with the specified name.
|
String |
SOAPContentElement.getAttributeValue(Name name) |
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) |
boolean |
SOAPElementImpl.removeAttribute(Name name)
Removes the attribute with the specified name.
|
boolean |
SOAPContentElement.removeAttribute(Name name) |
void |
SOAPFaultImpl.setFaultCode(Name faultCode)
Sets this SOAPFault object with the given fault code.
|
Constructor and Description |
---|
DetailEntryImpl(Name name) |
SOAPBodyElementDoc(Name name) |
SOAPBodyElementRpc(Name name) |
SOAPContentElement(Name name)
Construct a SOAPContentElement
|
SOAPElementImpl(Name name)
Called by SOAPFactory
|
SOAPFaultElementImpl(Name name) |
SOAPHeaderElementImpl(Name name) |
Modifier and Type | Method and Description |
---|---|
static Name |
SOAPUtils.newName(QName faultCode,
SOAPEnvelope soapEnvelope) |
Modifier and Type | Method and Description |
---|---|
static QName |
SOAPUtils.toQName(Name name) |
Copyright © 2018 JBoss by Red Hat. All rights reserved.