Modifier and Type | Method and Description |
---|---|
OMNamespace |
OMFactory.createOMNamespace(String uri,
String prefix)
Create an
OMNamespace instance or retrieve an existing one if the factory supports
pooling. |
OMNamespace |
OMElement.declareDefaultNamespace(String uri)
This will declare a default namespace for this element explicitly
|
OMNamespace |
OMElement.declareNamespace(OMNamespace namespace)
Declares a namespace with the element as its scope.
|
OMNamespace |
OMElement.declareNamespace(String uri,
String prefix)
Creates a namespace in the current element scope.
|
OMNamespace |
OMElement.findNamespace(String uri,
String prefix)
Finds a namespace with the given uri and prefix, in the scope of the hierarchy.
|
OMNamespace |
OMElement.findNamespaceURI(String prefix)
Checks for a namespace in the context of this element with the given prefix and returns the
relevant namespace object, if available.
|
OMNamespace |
OMElement.getDefaultNamespace()
This will retrieve the default namespace of this element, if available. null returned if none
is found.
|
OMNamespace |
OMElement.getNamespace()
Get the namespace this element is part of.
|
OMNamespace |
OMAttribute.getNamespace() |
OMNamespace |
OMText.getNamespace()
Deprecated.
This API is going away. Please use getTextAsQName() instead.
|
Modifier and Type | Method and Description |
---|---|
OMAttribute |
OMElement.addAttribute(String localName,
String value,
OMNamespace ns)
Adds an attribute to this element.
|
OMAttribute |
OMFactory.createOMAttribute(String localName,
OMNamespace ns,
String value) |
OMSourcedElement |
OMFactory.createOMElement(OMDataSource source,
String localName,
OMNamespace ns)
Construct element with arbitrary data source.
|
OMElement |
OMFactory.createOMElement(String localName,
OMNamespace ns)
Create an element with the given name.
|
OMElement |
OMFactory.createOMElement(String localName,
OMNamespace ns,
OMContainer parent) |
OMElement |
OMFactory.createOMElement(String localName,
OMNamespace ns,
OMContainer parent,
OMXMLParserWrapper builder) |
OMNamespace |
OMElement.declareNamespace(OMNamespace namespace)
Declares a namespace with the element as its scope.
|
void |
OMElement.setNamespace(OMNamespace namespace)
Sets the Namespace.
|
void |
OMElement.setNamespaceWithNoFindInCurrentScope(OMNamespace namespace)
This will not search the namespace in the scope nor will declare in the current element, as
in setNamespace(OMNamespace).
|
void |
OMAttribute.setOMNamespace(OMNamespace omNamespace) |
Modifier and Type | Class and Description |
---|---|
class |
OMNamespaceImpl
Class OMNamespaceImpl
|
Modifier and Type | Class and Description |
---|---|
class |
NamespaceImpl |
Modifier and Type | Field and Description |
---|---|
protected OMNamespace |
ElementImpl.namespace |
protected OMNamespace |
TextNodeImpl.textNS |
Modifier and Type | Method and Description |
---|---|
OMNamespace |
ElementImpl.declareDefaultNamespace(String uri)
We use "" to store the default namespace of this element.
|
OMNamespace |
ElementImpl.declareNamespace(OMNamespace namespace)
Allows overriding an existing declaration if the same prefix was used.
|
OMNamespace |
ElementImpl.declareNamespace(String uri,
String prefix)
Allows overriding an existing declaration if the same prefix was used.
|
OMNamespace |
ElementImpl.findNamespace(String uri,
String prefix) |
OMNamespace |
ElementImpl.findNamespaceURI(String prefix) |
OMNamespace |
ElementImpl.getDefaultNamespace() |
OMNamespace |
AttrImpl.getNamespace()
Returns the namespace of the attribute as an
OMNamespace . |
OMNamespace |
TextNodeImpl.getNamespace() |
OMNamespace |
ElementImpl.getNamespace()
Returns the namespace of this element.
|
Modifier and Type | Method and Description |
---|---|
OMAttribute |
ElementImpl.addAttribute(String localName,
String value,
OMNamespace ns) |
OMNamespace |
ElementImpl.declareNamespace(OMNamespace namespace)
Allows overriding an existing declaration if the same prefix was used.
|
void |
ElementImpl.setNamespace(OMNamespace namespace)
Sets the namespace.
|
void |
ElementImpl.setNamespaceWithNoFindInCurrentScope(OMNamespace namespace) |
void |
AttrImpl.setOMNamespace(OMNamespace omNamespace)
Sets the namespace of this attribute node.
|
Constructor and Description |
---|
AttrImpl(DocumentImpl ownerDocument,
String localName,
OMNamespace namespace,
OMFactory factory) |
AttrImpl(DocumentImpl ownerDocument,
String localName,
OMNamespace ns,
String value,
OMFactory factory) |
Modifier and Type | Method and Description |
---|---|
OMNamespace |
OMDOMFactory.createOMNamespace(String uri,
String prefix)
Creates a new OMNamespace.
|
Modifier and Type | Method and Description |
---|---|
OMAttribute |
OMDOMFactory.createOMAttribute(String localName,
OMNamespace ns,
String value) |
OMSourcedElement |
OMDOMFactory.createOMElement(OMDataSource source,
String localName,
OMNamespace ns) |
OMElement |
OMDOMFactory.createOMElement(OMDataSource source,
String localName,
OMNamespace ns,
OMContainer parent) |
OMElement |
OMDOMFactory.createOMElement(String localName,
OMNamespace ns) |
OMElement |
OMDOMFactory.createOMElement(String localName,
OMNamespace ns,
OMContainer parent) |
OMElement |
OMDOMFactory.createOMElement(String localName,
OMNamespace ns,
OMContainer parent,
OMXMLParserWrapper builder)
Creates an OMElement with the builder.
|
Modifier and Type | Field and Description |
---|---|
static OMNamespace |
OMElementImpl.DEFAULT_DEFAULT_NS_OBJECT |
protected OMNamespace |
OMElementImpl.ns
Field ns
|
protected OMNamespace |
OMTextImpl.textNS |
static OMNamespace |
OMTextImpl.XOP_NS
Field nameSpace used when serializing Binary stuff as MTOM optimized.
|
Modifier and Type | Method and Description |
---|---|
OMNamespace |
OMSourcedElementImpl.declareDefaultNamespace(String uri) |
OMNamespace |
OMElementImpl.declareDefaultNamespace(String uri)
We use "" to store the default namespace of this element.
|
OMNamespace |
OMSourcedElementImpl.declareNamespace(OMNamespace namespace) |
OMNamespace |
OMElementImpl.declareNamespace(OMNamespace namespace) |
OMNamespace |
OMSourcedElementImpl.declareNamespace(String uri,
String prefix) |
OMNamespace |
OMElementImpl.declareNamespace(String uri,
String prefix)
Creates a namespace in the current element scope.
|
OMNamespace |
OMSourcedElementImpl.findNamespace(String uri,
String prefix) |
OMNamespace |
OMElementImpl.findNamespace(String uri,
String prefix)
Finds a namespace with the given uri and prefix, in the scope of the document.
|
OMNamespace |
OMSourcedElementImpl.findNamespaceURI(String prefix) |
OMNamespace |
OMElementImpl.findNamespaceURI(String prefix) |
OMNamespace |
OMSourcedElementImpl.getDefaultNamespace() |
OMNamespace |
OMElementImpl.getDefaultNamespace() |
OMNamespace |
OMSourcedElementImpl.getNamespace() |
OMNamespace |
OMAttributeImpl.getNamespace()
Method getNamespace.
|
OMNamespace |
OMTextImpl.getNamespace() |
OMNamespace |
OMElementImpl.getNamespace() |
Modifier and Type | Method and Description |
---|---|
OMAttribute |
OMSourcedElementImpl.addAttribute(String attributeName,
String value,
OMNamespace namespace) |
OMAttribute |
OMElementImpl.addAttribute(String attributeName,
String value,
OMNamespace ns) |
OMNamespace |
OMSourcedElementImpl.declareNamespace(OMNamespace namespace) |
OMNamespace |
OMElementImpl.declareNamespace(OMNamespace namespace) |
void |
OMSourcedElementImpl.setNamespace(OMNamespace namespace) |
void |
OMElementImpl.setNamespace(OMNamespace namespace)
Method setNamespace.
|
void |
OMSourcedElementImpl.setNamespaceWithNoFindInCurrentScope(OMNamespace namespace) |
void |
OMElementImpl.setNamespaceWithNoFindInCurrentScope(OMNamespace namespace) |
void |
OMAttributeImpl.setOMNamespace(OMNamespace omNamespace)
Method setOMNamespace.
|
Constructor and Description |
---|
OMAttributeImpl(String localName,
OMNamespace ns,
String value,
OMFactory factory)
Constructor OMAttributeImpl.
|
OMElementImpl(String localName,
OMNamespace ns,
OMContainer parent,
OMFactory factory)
This is the basic constructor for OMElement.
|
OMElementImpl(String localName,
OMNamespace ns,
OMContainer parent,
OMXMLParserWrapper builder,
OMFactory factory)
Constructor OMElementImpl.
|
OMElementImpl(String localName,
OMNamespace ns,
OMFactory factory)
Constructor OMElementImpl.
|
OMSourcedElementImpl(String localName,
OMNamespace ns,
OMContainer parent,
OMFactory factory) |
OMSourcedElementImpl(String localName,
OMNamespace ns,
OMContainer parent,
OMXMLParserWrapper builder,
OMFactory factory) |
OMSourcedElementImpl(String localName,
OMNamespace ns,
OMFactory factory) |
OMSourcedElementImpl(String localName,
OMNamespace ns,
OMFactory factory,
OMDataSource source)
Constructor.
|
Modifier and Type | Method and Description |
---|---|
OMNamespace |
OMLinkedListImplFactory.createOMNamespace(String uri,
String prefix)
Method createOMNamespace.
|
Modifier and Type | Method and Description |
---|---|
OMAttribute |
OMLinkedListImplFactory.createOMAttribute(String localName,
OMNamespace ns,
String value)
Creates attribute.
|
OMSourcedElement |
OMLinkedListImplFactory.createOMElement(OMDataSource source,
String localName,
OMNamespace ns)
Construct element with arbitrary data source.
|
OMElement |
OMLinkedListImplFactory.createOMElement(String localName,
OMNamespace ns)
Method createOMElement.
|
OMElement |
OMLinkedListImplFactory.createOMElement(String localName,
OMNamespace ns,
OMContainer parent) |
OMElement |
OMLinkedListImplFactory.createOMElement(String localName,
OMNamespace ns,
OMContainer parent,
OMXMLParserWrapper builder)
Method createOMElement.
|
Modifier and Type | Method and Description |
---|---|
static void |
OMSerializerUtil.serializeNamespace(OMNamespace namespace,
javax.xml.stream.XMLStreamWriter writer)
Deprecated.
Use serializeStartpart instead
|
Modifier and Type | Method and Description |
---|---|
OMNamespace |
SOAPBody.getFirstElementNS()
Retrieves the OMNamespace of the first element in the body.
|
OMNamespace |
SOAPFactory.getNamespace() |
OMNamespace |
SOAPEnvelope.getSOAPBodyFirstElementNS()
Retrieves the OMNamespace of the first element in the body.
|
Modifier and Type | Method and Description |
---|---|
SOAPHeaderBlock |
SOAPHeader.addHeaderBlock(String localName,
OMNamespace ns)
Creates a new
SOAPHeaderBlock object initialized with the specified name and
adds it to this SOAPHeader object. |
SOAPEnvelope |
SOAPFactory.createSOAPEnvelope(OMNamespace ns) |
SOAPHeaderBlock |
SOAPFactory.createSOAPHeaderBlock(String localName,
OMNamespace ns) |
SOAPHeaderBlock |
SOAPFactory.createSOAPHeaderBlock(String localName,
OMNamespace ns,
OMDataSource ds)
Create SOAPHeaderBlock that has an OMDataSource
|
SOAPHeaderBlock |
SOAPFactory.createSOAPHeaderBlock(String localName,
OMNamespace ns,
SOAPHeader parent) |
SOAPHeaderBlock |
SOAPFactory.createSOAPHeaderBlock(String localName,
OMNamespace ns,
SOAPHeader parent,
OMXMLParserWrapper builder) |
Modifier and Type | Method and Description |
---|---|
OMNamespace |
StAXSOAPModelBuilder.getEnvelopeNamespace() |
Modifier and Type | Field and Description |
---|---|
protected OMNamespace |
SOAPFaultTextImpl.langNamespace |
Modifier and Type | Method and Description |
---|---|
OMNamespace |
SOAPBodyImpl.getFirstElementNS() |
OMNamespace |
SOAPEnvelopeImpl.getSOAPBodyFirstElementNS() |
Modifier and Type | Method and Description |
---|---|
abstract SOAPHeaderBlock |
SOAPHeaderImpl.addHeaderBlock(String localName,
OMNamespace ns)
Creates a new
SOAPHeaderBlock object initialized with the specified name and
adds it to this SOAPHeader object. |
Constructor and Description |
---|
SOAPElement(DocumentImpl doc,
String localName,
OMNamespace ns,
SOAPFactory factory) |
SOAPEnvelopeImpl(OMNamespace ns,
SOAPFactory factory) |
SOAPHeaderBlockImpl(String localName,
OMNamespace ns,
OMElement parent,
OMXMLParserWrapper builder,
SOAPFactory factory)
Constructor SOAPHeaderBlockImpl.
|
SOAPHeaderBlockImpl(String localName,
OMNamespace ns,
SOAPFactory factory) |
SOAPHeaderBlockImpl(String localName,
OMNamespace ns,
SOAPHeader parent,
SOAPFactory factory) |
Modifier and Type | Method and Description |
---|---|
OMNamespace |
DOMSOAPFactory.getNamespace() |
Modifier and Type | Method and Description |
---|---|
SOAPEnvelope |
DOMSOAPFactory.createSOAPEnvelope(OMNamespace ns) |
SOAPHeaderBlock |
DOMSOAPFactory.createSOAPHeaderBlock(String localName,
OMNamespace ns) |
SOAPHeaderBlock |
DOMSOAPFactory.createSOAPHeaderBlock(String localName,
OMNamespace ns,
OMDataSource ds) |
SOAPHeaderBlock |
DOMSOAPFactory.createSOAPHeaderBlock(String localName,
OMNamespace ns,
SOAPHeader parent) |
SOAPHeaderBlock |
DOMSOAPFactory.createSOAPHeaderBlock(String localName,
OMNamespace ns,
SOAPHeader parent,
OMXMLParserWrapper builder) |
Modifier and Type | Method and Description |
---|---|
OMNamespace |
SOAP11Factory.getNamespace() |
Modifier and Type | Method and Description |
---|---|
SOAPHeaderBlock |
SOAP11HeaderImpl.addHeaderBlock(String localName,
OMNamespace ns) |
SOAPEnvelope |
SOAP11Factory.createSOAPEnvelope(OMNamespace ns) |
SOAPHeaderBlock |
SOAP11Factory.createSOAPHeaderBlock(String localName,
OMNamespace ns) |
SOAPHeaderBlock |
SOAP11Factory.createSOAPHeaderBlock(String localName,
OMNamespace ns,
SOAPHeader parent) |
SOAPHeaderBlock |
SOAP11Factory.createSOAPHeaderBlock(String localName,
OMNamespace ns,
SOAPHeader parent,
OMXMLParserWrapper builder) |
Constructor and Description |
---|
SOAP11HeaderBlockImpl(String localName,
OMNamespace ns,
OMElement parent,
OMXMLParserWrapper builder,
SOAPFactory factory)
Constructor SOAPHeaderBlockImpl
|
SOAP11HeaderBlockImpl(String localName,
OMNamespace ns,
SOAPFactory factory) |
SOAP11HeaderBlockImpl(String localName,
OMNamespace ns,
SOAPHeader parent,
SOAPFactory factory) |
Modifier and Type | Method and Description |
---|---|
SOAPHeaderBlock |
SOAP12HeaderImpl.addHeaderBlock(String localName,
OMNamespace ns) |
SOAPEnvelope |
SOAP12Factory.createSOAPEnvelope(OMNamespace ns) |
SOAPHeaderBlock |
SOAP12Factory.createSOAPHeaderBlock(String localName,
OMNamespace ns) |
SOAPHeaderBlock |
SOAP12Factory.createSOAPHeaderBlock(String localName,
OMNamespace ns,
SOAPHeader parent) |
SOAPHeaderBlock |
SOAP12Factory.createSOAPHeaderBlock(String localName,
OMNamespace ns,
SOAPHeader parent,
OMXMLParserWrapper builder) |
Constructor and Description |
---|
SOAP12HeaderBlockImpl(String localName,
OMNamespace ns,
SOAPFactory factory) |
SOAP12HeaderBlockImpl(String localName,
OMNamespace ns,
SOAPHeader parent,
OMXMLParserWrapper builder,
SOAPFactory factory)
Constructor SOAPHeaderBlockImpl
|
SOAP12HeaderBlockImpl(String localName,
OMNamespace ns,
SOAPHeader parent,
SOAPFactory factory) |
Modifier and Type | Field and Description |
---|---|
protected OMNamespace |
SOAPFaultTextImpl.langNamespace |
Modifier and Type | Method and Description |
---|---|
OMNamespace |
SOAPBodyImpl.getFirstElementNS() |
OMNamespace |
SOAPEnvelopeImpl.getSOAPBodyFirstElementNS() |
Modifier and Type | Method and Description |
---|---|
abstract SOAPHeaderBlock |
SOAPHeaderImpl.addHeaderBlock(String localName,
OMNamespace ns)
Creates a new
SOAPHeaderBlock object initialized with the specified name and
adds it to this SOAPHeader object. |
Modifier and Type | Method and Description |
---|---|
OMNamespace |
SOAP11Factory.getNamespace() |
Modifier and Type | Method and Description |
---|---|
SOAPHeaderBlock |
SOAP11HeaderImpl.addHeaderBlock(String localName,
OMNamespace ns) |
SOAPEnvelope |
SOAP11Factory.createSOAPEnvelope(OMNamespace ns) |
SOAPHeaderBlock |
SOAP11Factory.createSOAPHeaderBlock(String localName,
OMNamespace ns) |
SOAPHeaderBlock |
SOAP11Factory.createSOAPHeaderBlock(String localName,
OMNamespace ns,
OMDataSource ds) |
SOAPHeaderBlock |
SOAP11Factory.createSOAPHeaderBlock(String localName,
OMNamespace ns,
SOAPHeader parent) |
SOAPHeaderBlock |
SOAP11Factory.createSOAPHeaderBlock(String localName,
OMNamespace ns,
SOAPHeader parent,
OMXMLParserWrapper builder) |
Constructor and Description |
---|
SOAP11HeaderBlockImpl(String localName,
OMNamespace ns,
OMElement parent,
OMXMLParserWrapper builder,
SOAPFactory factory)
Constructor SOAPHeaderBlockImpl
|
SOAP11HeaderBlockImpl(String localName,
OMNamespace ns,
SOAPFactory factory) |
SOAP11HeaderBlockImpl(String localName,
OMNamespace ns,
SOAPFactory factory,
OMDataSource ds) |
SOAP11HeaderBlockImpl(String localName,
OMNamespace ns,
SOAPHeader parent,
SOAPFactory factory) |
Modifier and Type | Method and Description |
---|---|
OMNamespace |
SOAP12Factory.getNamespace() |
Modifier and Type | Method and Description |
---|---|
SOAPHeaderBlock |
SOAP12HeaderImpl.addHeaderBlock(String localName,
OMNamespace ns) |
SOAPEnvelope |
SOAP12Factory.createSOAPEnvelope(OMNamespace ns) |
SOAPHeaderBlock |
SOAP12Factory.createSOAPHeaderBlock(String localName,
OMNamespace ns) |
SOAPHeaderBlock |
SOAP12Factory.createSOAPHeaderBlock(String localName,
OMNamespace ns,
OMDataSource ds) |
SOAPHeaderBlock |
SOAP12Factory.createSOAPHeaderBlock(String localName,
OMNamespace ns,
SOAPHeader parent) |
SOAPHeaderBlock |
SOAP12Factory.createSOAPHeaderBlock(String localName,
OMNamespace ns,
SOAPHeader parent,
OMXMLParserWrapper builder) |
Constructor and Description |
---|
SOAP12HeaderBlockImpl(String localName,
OMNamespace ns,
SOAPFactory factory) |
SOAP12HeaderBlockImpl(String localName,
OMNamespace ns,
SOAPFactory factory,
OMDataSource ds) |
SOAP12HeaderBlockImpl(String localName,
OMNamespace ns,
SOAPHeader parent,
OMXMLParserWrapper builder,
SOAPFactory factory)
Constructor SOAPHeaderBlockImpl
|
SOAP12HeaderBlockImpl(String localName,
OMNamespace ns,
SOAPHeader parent,
SOAPFactory factory) |
Copyright © 2004-2013 The Apache Software Foundation. All Rights Reserved.