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)
Add a namespace declaration for the default namespace to this element.
|
OMNamespace |
OMElement.declareNamespace(OMNamespace namespace)
Declares a namespace with the element as its scope.
|
OMNamespace |
OMElement.declareNamespace(String uri,
String prefix)
Add a namespace declaration for the given namespace URI to this element, optionally
generating a prefix for that namespace.
|
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()
Get the default namespace in scope on this element.
|
OMNamespace |
OMNamedInformationItem.getNamespace()
Get the namespace this information item is part of.
|
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)
Create an attribute with the given name and value.
|
OMSourcedElement |
OMFactory.createOMElement(OMDataSource source,
String localName,
OMNamespace ns)
Create a sourced element with a known local name and namespace URI.
|
OMElement |
OMFactory.createOMElement(String localName,
OMNamespace ns)
Create an element with the given name.
|
OMElement |
OMFactory.createOMElement(String localName,
OMNamespace ns,
OMContainer parent)
Create an element with the given name and parent.
|
OMNamespace |
OMElement.declareNamespace(OMNamespace namespace)
Declares a namespace with the element as its scope.
|
void |
OMElement.setNamespace(OMNamespace namespace)
Set the namespace for this element.
|
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
Deprecated.
OMNamespace instances should always be created using
OMFactory.createOMNamespace(String, String) . This class will be removed in
Axiom 1.3. |
Modifier and Type | Method and Description |
---|---|
OMNamespace |
OMElementEx.addNamespaceDeclaration(String uri,
String prefix)
Adds a namespace declaration without doing any additional checks.
|
Modifier and Type | Field and Description |
---|---|
protected OMNamespace |
ElementImpl.namespace
The namespace of this element.
|
protected OMNamespace |
TextNodeImpl.textNS |
Modifier and Type | Method and Description |
---|---|
OMNamespace |
ElementImpl.addNamespaceDeclaration(String uri,
String prefix) |
OMNamespace |
ElementImpl.declareDefaultNamespace(String uri) |
OMNamespace |
ElementImpl.declareNamespace(OMNamespace namespace)
Allows overriding an existing declaration if the same prefix was used.
|
OMNamespace |
ElementImpl.declareNamespace(String uri,
String prefix) |
OMNamespace |
ElementImpl.findNamespace(String uri,
String prefix) |
OMNamespace |
ElementImpl.findNamespaceURI(String prefix) |
OMNamespace |
ElementImpl.getDefaultNamespace() |
OMNamespace |
TextNodeImpl.getNamespace() |
OMNamespace |
AttrImpl.getNamespace()
Returns the namespace of the attribute as an
OMNamespace . |
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 |
AttrImpl.internalSetNamespace(OMNamespace namespace) |
void |
ElementImpl.internalSetNamespace(OMNamespace namespace) |
void |
ElementImpl.setNamespace(OMNamespace 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) |
ElementImpl(ParentNode parentNode,
String localName,
OMNamespace ns,
OMXMLParserWrapper builder,
OMFactory factory,
boolean generateNSDecl) |
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) |
Modifier and Type | Field and Description |
---|---|
protected OMNamespace |
OMElementImpl.ns
The namespace of this element.
|
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.addNamespaceDeclaration(String uri,
String prefix) |
OMNamespace |
OMElementImpl.addNamespaceDeclaration(String uri,
String prefix) |
OMNamespace |
OMSourcedElementImpl.declareDefaultNamespace(String uri) |
OMNamespace |
OMElementImpl.declareDefaultNamespace(String uri) |
OMNamespace |
OMSourcedElementImpl.declareNamespace(OMNamespace namespace) |
OMNamespace |
OMElementImpl.declareNamespace(OMNamespace namespace) |
OMNamespace |
OMSourcedElementImpl.declareNamespace(String uri,
String prefix) |
OMNamespace |
OMElementImpl.declareNamespace(String uri,
String prefix) |
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 |
OMTextImpl.getNamespace() |
OMNamespace |
OMAttributeImpl.getNamespace()
Method 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) |
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(OMContainer parent,
String localName,
OMNamespace ns,
OMXMLParserWrapper builder,
OMFactory factory,
boolean generateNSDecl) |
OMSourcedElementImpl(OMContainer parent,
String localName,
OMNamespace ns,
OMXMLParserWrapper builder,
OMFactory factory,
boolean generateNSDecl) |
OMSourcedElementImpl(String localName,
OMNamespace ns,
OMContainer parent,
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) |
Modifier and Type | Method and Description |
---|---|
static void |
OMSerializerUtil.serializeNamespace(OMNamespace namespace,
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()
Get the envelope namespace for the SOAP version used by this factory.
|
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)
Create a SOAP envelope with the given namespace.
|
SOAPHeaderBlock |
SOAPFactory.createSOAPHeaderBlock(String localName,
OMNamespace ns) |
SOAPHeaderBlock |
SOAPFactory.createSOAPHeaderBlock(String localName,
OMNamespace ns,
OMDataSource source)
Create a
SOAPHeaderBlock from an OMDataSource with a known local name and
namespace URI. |
SOAPHeaderBlock |
SOAPFactory.createSOAPHeaderBlock(String localName,
OMNamespace ns,
SOAPHeader parent) |
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 |
---|---|
SOAPHeaderBlock |
SOAPHeaderImpl.addHeaderBlock(String localName,
OMNamespace ns) |
Constructor and Description |
---|
SOAPBodyImpl(ParentNode parentNode,
OMNamespace ns,
OMXMLParserWrapper builder,
OMFactory factory,
boolean generateNSDecl) |
SOAPElement(ParentNode parentNode,
String localName,
OMNamespace ns,
OMXMLParserWrapper builder,
OMFactory factory,
boolean generateNSDecl) |
SOAPEnvelopeImpl(ParentNode parentNode,
OMNamespace ns,
OMXMLParserWrapper builder,
OMFactory factory,
boolean generateNSDecl) |
SOAPFaultCodeImpl(ParentNode parentNode,
OMNamespace ns,
OMXMLParserWrapper builder,
OMFactory factory,
boolean generateNSDecl) |
SOAPFaultDetailImpl(ParentNode parentNode,
OMNamespace ns,
OMXMLParserWrapper builder,
OMFactory factory,
boolean generateNSDecl) |
SOAPFaultImpl(ParentNode parentNode,
OMNamespace ns,
OMXMLParserWrapper builder,
OMFactory factory,
boolean generateNSDecl) |
SOAPFaultNodeImpl(ParentNode parentNode,
OMNamespace ns,
OMXMLParserWrapper builder,
OMFactory factory,
boolean generateNSDecl) |
SOAPFaultReasonImpl(ParentNode parentNode,
OMNamespace ns,
OMXMLParserWrapper builder,
OMFactory factory,
boolean generateNSDecl) |
SOAPFaultRoleImpl(ParentNode parentNode,
OMNamespace ns,
OMXMLParserWrapper builder,
OMFactory factory,
boolean generateNSDecl) |
SOAPFaultSubCodeImpl(ParentNode parentNode,
String localName,
OMNamespace ns,
OMXMLParserWrapper builder,
OMFactory factory,
boolean generateNSDecl) |
SOAPFaultTextImpl(ParentNode parentNode,
OMNamespace ns,
OMXMLParserWrapper builder,
OMFactory factory,
boolean generateNSDecl) |
SOAPFaultValueImpl(ParentNode parentNode,
OMNamespace ns,
OMXMLParserWrapper builder,
OMFactory factory,
boolean generateNSDecl) |
SOAPHeaderBlockImpl(ParentNode parentNode,
String localName,
OMNamespace ns,
OMXMLParserWrapper builder,
OMFactory factory,
boolean generateNSDecl) |
SOAPHeaderImpl(ParentNode parentNode,
OMNamespace ns,
OMXMLParserWrapper builder,
OMFactory factory,
boolean generateNSDecl) |
Modifier and Type | Method and Description |
---|---|
SOAPHeaderBlock |
DOMSOAPFactory.createSOAPHeaderBlock(String localName,
OMNamespace ns,
OMDataSource ds) |
Modifier and Type | Method and Description |
---|---|
OMNamespace |
SOAP11Factory.getNamespace() |
Modifier and Type | Method and Description |
---|---|
SOAPEnvelope |
SOAP11Factory.createSOAPEnvelope(OMNamespace ns) |
SOAPHeaderBlock |
SOAP11Factory.createSOAPHeaderBlock(String localName,
OMNamespace ns) |
SOAPHeaderBlock |
SOAP11Factory.createSOAPHeaderBlock(String localName,
OMNamespace ns,
SOAPHeader parent) |
Modifier and Type | Method and Description |
---|---|
OMNamespace |
SOAP12Factory.getNamespace() |
Modifier and Type | Method and Description |
---|---|
SOAPEnvelope |
SOAP12Factory.createSOAPEnvelope(OMNamespace ns) |
SOAPHeaderBlock |
SOAP12Factory.createSOAPHeaderBlock(String localName,
OMNamespace ns) |
SOAPHeaderBlock |
SOAP12Factory.createSOAPHeaderBlock(String localName,
OMNamespace ns,
SOAPHeader parent) |
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 |
---|---|
SOAPHeaderBlock |
SOAPHeaderImpl.addHeaderBlock(String localName,
OMNamespace ns) |
Modifier and Type | Method and Description |
---|---|
OMNamespace |
SOAP11Factory.getNamespace() |
Modifier and Type | Method and Description |
---|---|
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) |
Constructor and Description |
---|
SOAP11HeaderBlockImpl(OMContainer parent,
String localName,
OMNamespace ns,
OMXMLParserWrapper builder,
OMFactory factory,
boolean generateNSDecl) |
SOAP11HeaderBlockImpl(String localName,
OMNamespace ns,
SOAPFactory factory,
OMDataSource ds) |
Modifier and Type | Method and Description |
---|---|
OMNamespace |
SOAP12Factory.getNamespace() |
Modifier and Type | Method and Description |
---|---|
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) |
Constructor and Description |
---|
SOAP12HeaderBlockImpl(OMContainer parent,
String localName,
OMNamespace ns,
OMXMLParserWrapper builder,
OMFactory factory,
boolean generateNSDecl) |
SOAP12HeaderBlockImpl(String localName,
OMNamespace ns,
SOAPFactory factory,
OMDataSource ds) |
Copyright © 2004–2023 The Apache Software Foundation. All rights reserved.