Uses of Interface
org.apache.axiom.om.OMNamespace

Packages that use OMNamespace
org.apache.axiom.om   
org.apache.axiom.om.impl.dom   
org.apache.axiom.om.impl.dom.factory   
org.apache.axiom.om.impl.llom   
org.apache.axiom.om.impl.llom.factory   
org.apache.axiom.om.impl.util   
org.apache.axiom.soap   
org.apache.axiom.soap.impl.builder   
org.apache.axiom.soap.impl.dom   
org.apache.axiom.soap.impl.dom.factory   
org.apache.axiom.soap.impl.dom.soap11   
org.apache.axiom.soap.impl.dom.soap12   
org.apache.axiom.soap.impl.llom   
org.apache.axiom.soap.impl.llom.soap11   
org.apache.axiom.soap.impl.llom.soap12   
 

Uses of OMNamespace in org.apache.axiom.om
 

Methods in org.apache.axiom.om that return OMNamespace
 OMNamespace OMFactory.createOMNamespace(java.lang.String uri, java.lang.String prefix)
           
 OMNamespace OMAttribute.getNamespace()
           
 OMNamespace OMElement.declareNamespace(java.lang.String uri, java.lang.String prefix)
          Creates a namespace in the current element scope.
 OMNamespace OMElement.declareDefaultNamespace(java.lang.String uri)
          This will declare a default namespace for this element explicitly
 OMNamespace OMElement.getDefaultNamespace()
          This will retrieve the default namespace of this element, if available. null returned if none is found.
 OMNamespace OMElement.declareNamespace(OMNamespace namespace)
          Declares a namespace with the element as its scope.
 OMNamespace OMElement.findNamespace(java.lang.String uri, java.lang.String prefix)
          Finds a namespace with the given uri and prefix, in the scope of the hierarchy.
 OMNamespace OMElement.findNamespaceURI(java.lang.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.getNamespace()
           
 

Methods in org.apache.axiom.om with parameters of type OMNamespace
 OMElement OMFactory.createOMElement(java.lang.String localName, OMNamespace ns)
           
 OMElement OMFactory.createOMElement(java.lang.String localName, OMNamespace ns, OMContainer parent)
           
 OMElement OMFactory.createOMElement(java.lang.String localName, OMNamespace ns, OMContainer parent, OMXMLParserWrapper builder)
           
 OMElement OMFactory.createOMElement(OMDataSource source, java.lang.String localName, OMNamespace ns)
          Construct element with arbitrary data source.
 OMAttribute OMFactory.createOMAttribute(java.lang.String localName, OMNamespace ns, java.lang.String value)
           
 void OMAttribute.setOMNamespace(OMNamespace omNamespace)
           
 OMNamespace OMElement.declareNamespace(OMNamespace namespace)
          Declares a namespace with the element as its scope.
 OMAttribute OMElement.addAttribute(java.lang.String attributeName, java.lang.String value, OMNamespace ns)
          Adds an attribute to the current element.
 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).
 

Uses of OMNamespace in org.apache.axiom.om.impl.dom
 

Classes in org.apache.axiom.om.impl.dom that implement OMNamespace
 class NamespaceImpl
           
 

Fields in org.apache.axiom.om.impl.dom declared as OMNamespace
protected  OMNamespace ElementImpl.namespace
           
protected  OMNamespace TextImpl.ns
          Field nameSpace is used when serializing Binary stuff as MTOM optimized.
 

Methods in org.apache.axiom.om.impl.dom that return OMNamespace
 OMNamespace AttrImpl.getNamespace()
          Returns the namespace of the attribute as an OMNamespace.
 OMNamespace ElementImpl.declareNamespace(OMNamespace namespace)
          Allows overriding an existing declaration if the same prefix was used.
 OMNamespace ElementImpl.declareNamespace(java.lang.String uri, java.lang.String prefix)
          Allows overriding an existing declaration if the same prefix was used.
 OMNamespace ElementImpl.declareDefaultNamespace(java.lang.String uri)
          We use "" to store the default namespace of this element.
 OMNamespace ElementImpl.getDefaultNamespace()
           
 OMNamespace ElementImpl.findNamespace(java.lang.String uri, java.lang.String prefix)
           
 OMNamespace ElementImpl.findNamespaceURI(java.lang.String prefix)
           
 OMNamespace ElementImpl.getNamespace()
          Returns the namespace of this element.
 

Methods in org.apache.axiom.om.impl.dom with parameters of type OMNamespace
 void AttrImpl.setOMNamespace(OMNamespace omNamespace)
          Sets the namespace of this attribute node.
 OMAttribute ElementImpl.addAttribute(java.lang.String attributeName, java.lang.String value, OMNamespace ns)
          The behaviour of this is the same as org.w3c.dom.Element#setAttributeNS
 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)
           
 

Constructors in org.apache.axiom.om.impl.dom with parameters of type OMNamespace
AttrImpl(DocumentImpl ownerDocument, java.lang.String localName, OMNamespace ns, java.lang.String value, OMFactory factory)
           
AttrImpl(DocumentImpl ownerDocument, java.lang.String localName, OMNamespace namespace, OMFactory factory)
           
 

Uses of OMNamespace in org.apache.axiom.om.impl.dom.factory
 

Methods in org.apache.axiom.om.impl.dom.factory that return OMNamespace
 OMNamespace OMDOMFactory.createOMNamespace(java.lang.String uri, java.lang.String prefix)
          Creates a new OMNamespace.
 

Methods in org.apache.axiom.om.impl.dom.factory with parameters of type OMNamespace
 OMElement OMDOMFactory.createOMElement(java.lang.String localName, OMNamespace ns)
           
 OMElement OMDOMFactory.createOMElement(java.lang.String localName, OMNamespace ns, OMContainer parent)
           
 OMElement OMDOMFactory.createOMElement(java.lang.String localName, OMNamespace ns, OMContainer parent, OMXMLParserWrapper builder)
          Creates an OMElement with the builder.
 OMElement OMDOMFactory.createOMElement(OMDataSource source, java.lang.String localName, OMNamespace ns, OMContainer parent)
           
 OMElement OMDOMFactory.createOMElement(OMDataSource source, java.lang.String localName, OMNamespace ns)
           
 OMAttribute OMDOMFactory.createOMAttribute(java.lang.String localName, OMNamespace ns, java.lang.String value)
           
 

Uses of OMNamespace in org.apache.axiom.om.impl.llom
 

Classes in org.apache.axiom.om.impl.llom that implement OMNamespace
 class OMNamespaceImpl
          Class OMNamespaceImpl
 

Fields in org.apache.axiom.om.impl.llom declared as OMNamespace
static OMNamespace OMTextImpl.XOP_NS
          Field nameSpace used when serializing Binary stuff as MTOM optimized.
protected  OMNamespace OMTextImpl.textNS
           
protected  OMNamespace OMElementImpl.ns
          Field ns
 

Methods in org.apache.axiom.om.impl.llom that return OMNamespace
 OMNamespace OMAttributeImpl.getNamespace()
          Method getNamespace.
 OMNamespace OMElementImpl.declareNamespace(java.lang.String uri, java.lang.String prefix)
          Creates a namespace in the current element scope.
 OMNamespace OMElementImpl.declareDefaultNamespace(java.lang.String uri)
          We use "" to store the default namespace of this element.
 OMNamespace OMElementImpl.getDefaultNamespace()
           
 OMNamespace OMElementImpl.declareNamespace(OMNamespace namespace)
           
 OMNamespace OMElementImpl.findNamespace(java.lang.String uri, java.lang.String prefix)
          Finds a namespace with the given uri and prefix, in the scope of the document.
 OMNamespace OMElementImpl.findNamespaceURI(java.lang.String prefix)
           
 OMNamespace OMElementImpl.getNamespace()
          Method getNamespace.
 OMNamespace OMSourcedElementImpl.declareNamespace(java.lang.String uri, java.lang.String prefix)
           
 OMNamespace OMSourcedElementImpl.declareDefaultNamespace(java.lang.String uri)
           
 OMNamespace OMSourcedElementImpl.getDefaultNamespace()
           
 OMNamespace OMSourcedElementImpl.declareNamespace(OMNamespace namespace)
           
 OMNamespace OMSourcedElementImpl.findNamespace(java.lang.String uri, java.lang.String prefix)
           
 OMNamespace OMSourcedElementImpl.findNamespaceURI(java.lang.String prefix)
           
 OMNamespace OMSourcedElementImpl.getNamespace()
           
 

Methods in org.apache.axiom.om.impl.llom with parameters of type OMNamespace
 void OMAttributeImpl.setOMNamespace(OMNamespace omNamespace)
          Method setOMNamespace.
 OMNamespace OMElementImpl.declareNamespace(OMNamespace namespace)
           
 OMAttribute OMElementImpl.addAttribute(java.lang.String attributeName, java.lang.String value, OMNamespace ns)
          Method addAttribute.
 void OMElementImpl.setNamespace(OMNamespace namespace)
          Method setNamespace.
 void OMElementImpl.setNamespaceWithNoFindInCurrentScope(OMNamespace namespace)
           
 OMNamespace OMSourcedElementImpl.declareNamespace(OMNamespace namespace)
           
 OMAttribute OMSourcedElementImpl.addAttribute(java.lang.String attributeName, java.lang.String value, OMNamespace namespace)
           
 void OMSourcedElementImpl.setNamespace(OMNamespace namespace)
           
 void OMSourcedElementImpl.setNamespaceWithNoFindInCurrentScope(OMNamespace namespace)
           
 

Constructors in org.apache.axiom.om.impl.llom with parameters of type OMNamespace
OMAttributeImpl(java.lang.String localName, OMNamespace ns, java.lang.String value, OMFactory factory)
          Constructor OMAttributeImpl.
OMElementImpl(java.lang.String localName, OMNamespace ns, OMContainer parent, OMXMLParserWrapper builder, OMFactory factory)
          Constructor OMElementImpl.
OMElementImpl(java.lang.String localName, OMNamespace ns, OMFactory factory)
          Constructor OMElementImpl.
OMElementImpl(java.lang.String localName, OMNamespace ns, OMContainer parent, OMFactory factory)
          This is the basic constructor for OMElement.
OMSourcedElementImpl(java.lang.String localName, OMNamespace ns, OMFactory factory, OMDataSource source)
          Constructor.
 

Uses of OMNamespace in org.apache.axiom.om.impl.llom.factory
 

Methods in org.apache.axiom.om.impl.llom.factory that return OMNamespace
 OMNamespace OMLinkedListImplFactory.createOMNamespace(java.lang.String uri, java.lang.String prefix)
          Method createOMNamespace.
 

Methods in org.apache.axiom.om.impl.llom.factory with parameters of type OMNamespace
 OMElement OMLinkedListImplFactory.createOMElement(java.lang.String localName, OMNamespace ns)
          Method createOMElement.
 OMElement OMLinkedListImplFactory.createOMElement(java.lang.String localName, OMNamespace ns, OMContainer parent)
           
 OMElement OMLinkedListImplFactory.createOMElement(java.lang.String localName, OMNamespace ns, OMContainer parent, OMXMLParserWrapper builder)
          Method createOMElement.
 OMElement OMLinkedListImplFactory.createOMElement(OMDataSource source, java.lang.String localName, OMNamespace ns)
          Construct element with arbitrary data source.
 OMAttribute OMLinkedListImplFactory.createOMAttribute(java.lang.String localName, OMNamespace ns, java.lang.String value)
          Creates attribute.
 

Uses of OMNamespace in org.apache.axiom.om.impl.util
 

Methods in org.apache.axiom.om.impl.util with parameters of type OMNamespace
static void OMSerializerUtil.serializeNamespace(OMNamespace namespace, javax.xml.stream.XMLStreamWriter writer)
          Method serializeNamespace.
 

Uses of OMNamespace in org.apache.axiom.soap
 

Methods in org.apache.axiom.soap that return OMNamespace
 OMNamespace SOAPFactory.getNamespace()
           
 

Methods in org.apache.axiom.soap with parameters of type OMNamespace
 SOAPHeaderBlock SOAPFactory.createSOAPHeaderBlock(java.lang.String localName, OMNamespace ns, SOAPHeader parent)
           
 SOAPHeaderBlock SOAPFactory.createSOAPHeaderBlock(java.lang.String localName, OMNamespace ns)
           
 SOAPHeaderBlock SOAPFactory.createSOAPHeaderBlock(java.lang.String localName, OMNamespace ns, SOAPHeader parent, OMXMLParserWrapper builder)
           
 SOAPHeaderBlock SOAPHeader.addHeaderBlock(java.lang.String localName, OMNamespace ns)
          Creates a new SOAPHeaderBlock object initialized with the specified name and adds it to this SOAPHeader object.
 

Uses of OMNamespace in org.apache.axiom.soap.impl.builder
 

Methods in org.apache.axiom.soap.impl.builder that return OMNamespace
 OMNamespace StAXSOAPModelBuilder.getEnvelopeNamespace()
           
 

Uses of OMNamespace in org.apache.axiom.soap.impl.dom
 

Fields in org.apache.axiom.soap.impl.dom declared as OMNamespace
protected  OMNamespace SOAPFaultTextImpl.langNamespace
           
 

Methods in org.apache.axiom.soap.impl.dom with parameters of type OMNamespace
abstract  SOAPHeaderBlock SOAPHeaderImpl.addHeaderBlock(java.lang.String localName, OMNamespace ns)
          Creates a new SOAPHeaderBlock object initialized with the specified name and adds it to this SOAPHeader object.
 

Constructors in org.apache.axiom.soap.impl.dom with parameters of type OMNamespace
SOAPHeaderBlockImpl(java.lang.String localName, OMNamespace ns, SOAPHeader parent, SOAPFactory factory)
           
SOAPHeaderBlockImpl(java.lang.String localName, OMNamespace ns, OMElement parent, OMXMLParserWrapper builder, SOAPFactory factory)
          Constructor SOAPHeaderBlockImpl.
SOAPElement(DocumentImpl doc, java.lang.String localName, OMNamespace ns, SOAPFactory factory)
           
SOAPEnvelopeImpl(OMNamespace ns, SOAPFactory factory)
           
 

Uses of OMNamespace in org.apache.axiom.soap.impl.dom.factory
 

Methods in org.apache.axiom.soap.impl.dom.factory that return OMNamespace
 OMNamespace DOMSOAPFactory.getNamespace()
           
 

Methods in org.apache.axiom.soap.impl.dom.factory with parameters of type OMNamespace
 SOAPHeaderBlock DOMSOAPFactory.createSOAPHeaderBlock(java.lang.String localName, OMNamespace ns, SOAPHeader parent)
           
 SOAPHeaderBlock DOMSOAPFactory.createSOAPHeaderBlock(java.lang.String localName, OMNamespace ns, SOAPHeader parent, OMXMLParserWrapper builder)
           
 SOAPHeaderBlock DOMSOAPFactory.createSOAPHeaderBlock(java.lang.String localName, OMNamespace ns)
           
 

Uses of OMNamespace in org.apache.axiom.soap.impl.dom.soap11
 

Methods in org.apache.axiom.soap.impl.dom.soap11 that return OMNamespace
 OMNamespace SOAP11Factory.getNamespace()
           
 

Methods in org.apache.axiom.soap.impl.dom.soap11 with parameters of type OMNamespace
 SOAPHeaderBlock SOAP11Factory.createSOAPHeaderBlock(java.lang.String localName, OMNamespace ns, SOAPHeader parent)
           
 SOAPHeaderBlock SOAP11Factory.createSOAPHeaderBlock(java.lang.String localName, OMNamespace ns, SOAPHeader parent, OMXMLParserWrapper builder)
           
 SOAPHeaderBlock SOAP11HeaderImpl.addHeaderBlock(java.lang.String localName, OMNamespace ns)
           
 

Constructors in org.apache.axiom.soap.impl.dom.soap11 with parameters of type OMNamespace
SOAP11HeaderBlockImpl(java.lang.String localName, OMNamespace ns, SOAPHeader parent, SOAPFactory factory)
           
SOAP11HeaderBlockImpl(java.lang.String localName, OMNamespace ns, OMElement parent, OMXMLParserWrapper builder, SOAPFactory factory)
          Constructor SOAPHeaderBlockImpl
 

Uses of OMNamespace in org.apache.axiom.soap.impl.dom.soap12
 

Methods in org.apache.axiom.soap.impl.dom.soap12 with parameters of type OMNamespace
 SOAPHeaderBlock SOAP12HeaderImpl.addHeaderBlock(java.lang.String localName, OMNamespace ns)
           
 SOAPHeaderBlock SOAP12Factory.createSOAPHeaderBlock(java.lang.String localName, OMNamespace ns, SOAPHeader parent)
           
 SOAPHeaderBlock SOAP12Factory.createSOAPHeaderBlock(java.lang.String localName, OMNamespace ns, SOAPHeader parent, OMXMLParserWrapper builder)
           
 

Constructors in org.apache.axiom.soap.impl.dom.soap12 with parameters of type OMNamespace
SOAP12HeaderBlockImpl(java.lang.String localName, OMNamespace ns, SOAPHeader parent, SOAPFactory factory)
           
SOAP12HeaderBlockImpl(java.lang.String localName, OMNamespace ns, SOAPHeader parent, OMXMLParserWrapper builder, SOAPFactory factory)
          Constructor SOAPHeaderBlockImpl
 

Uses of OMNamespace in org.apache.axiom.soap.impl.llom
 

Fields in org.apache.axiom.soap.impl.llom declared as OMNamespace
protected  OMNamespace SOAPFaultTextImpl.langNamespace
           
 

Methods in org.apache.axiom.soap.impl.llom with parameters of type OMNamespace
abstract  SOAPHeaderBlock SOAPHeaderImpl.addHeaderBlock(java.lang.String localName, OMNamespace ns)
          Creates a new SOAPHeaderBlock object initialized with the specified name and adds it to this SOAPHeader object.
 

Constructors in org.apache.axiom.soap.impl.llom with parameters of type OMNamespace
SOAPHeaderBlockImpl(java.lang.String localName, OMNamespace ns, SOAPFactory factory)
           
SOAPHeaderBlockImpl(java.lang.String localName, OMNamespace ns, SOAPHeader parent, SOAPFactory factory)
           
SOAPHeaderBlockImpl(java.lang.String localName, OMNamespace ns, OMElement parent, OMXMLParserWrapper builder, SOAPFactory factory)
          Constructor SOAPHeaderBlockImpl.
SOAPElement(java.lang.String localName, OMNamespace ns, SOAPFactory factory)
           
SOAPFaultNodeImpl(OMNamespace ns, SOAPFactory factory)
           
SOAPHeaderImpl(OMNamespace ns, SOAPFactory factory)
           
SOAPFaultImpl(OMNamespace ns, SOAPFactory factory)
           
SOAPFaultValueImpl(OMNamespace ns, SOAPFactory factory)
           
SOAPFaultSubCodeImpl(OMNamespace ns, SOAPFactory factory)
           
SOAPFaultDetailImpl(OMNamespace ns, SOAPFactory factory)
           
SOAPFaultTextImpl(OMNamespace ns, SOAPFactory factory)
           
SOAPFaultRoleImpl(OMNamespace ns, SOAPFactory factory)
           
SOAPFaultCodeImpl(OMNamespace ns, SOAPFactory factory)
           
SOAPFaultReasonImpl(OMNamespace ns, SOAPFactory factory)
           
SOAPEnvelopeImpl(OMNamespace ns, SOAPFactory factory)
           
SOAPBodyImpl(java.lang.String localName, OMNamespace ns, SOAPFactory factory)
           
 

Uses of OMNamespace in org.apache.axiom.soap.impl.llom.soap11
 

Methods in org.apache.axiom.soap.impl.llom.soap11 that return OMNamespace
 OMNamespace SOAP11Factory.getNamespace()
          Eran Chinthaka (chinthaka@apache.org)
 

Methods in org.apache.axiom.soap.impl.llom.soap11 with parameters of type OMNamespace
 SOAPHeaderBlock SOAP11Factory.createSOAPHeaderBlock(java.lang.String localName, OMNamespace ns, SOAPHeader parent)
           
 SOAPHeaderBlock SOAP11Factory.createSOAPHeaderBlock(java.lang.String localName, OMNamespace ns)
           
 SOAPHeaderBlock SOAP11Factory.createSOAPHeaderBlock(java.lang.String localName, OMNamespace ns, SOAPHeader parent, OMXMLParserWrapper builder)
           
 SOAPHeaderBlock SOAP11HeaderImpl.addHeaderBlock(java.lang.String localName, OMNamespace ns)
           
 

Constructors in org.apache.axiom.soap.impl.llom.soap11 with parameters of type OMNamespace
SOAP11HeaderBlockImpl(java.lang.String localName, OMNamespace ns, SOAPFactory factory)
           
SOAP11HeaderBlockImpl(java.lang.String localName, OMNamespace ns, SOAPHeader parent, SOAPFactory factory)
           
SOAP11HeaderBlockImpl(java.lang.String localName, OMNamespace ns, OMElement parent, OMXMLParserWrapper builder, SOAPFactory factory)
          Constructor SOAPHeaderBlockImpl
 

Uses of OMNamespace in org.apache.axiom.soap.impl.llom.soap12
 

Methods in org.apache.axiom.soap.impl.llom.soap12 that return OMNamespace
 OMNamespace SOAP12Factory.getNamespace()
           
 

Methods in org.apache.axiom.soap.impl.llom.soap12 with parameters of type OMNamespace
 SOAPHeaderBlock SOAP12HeaderImpl.addHeaderBlock(java.lang.String localName, OMNamespace ns)
           
 SOAPHeaderBlock SOAP12Factory.createSOAPHeaderBlock(java.lang.String localName, OMNamespace ns, SOAPHeader parent)
           
 SOAPHeaderBlock SOAP12Factory.createSOAPHeaderBlock(java.lang.String localName, OMNamespace ns, SOAPHeader parent, OMXMLParserWrapper builder)
           
 SOAPHeaderBlock SOAP12Factory.createSOAPHeaderBlock(java.lang.String localName, OMNamespace ns)
           
 

Constructors in org.apache.axiom.soap.impl.llom.soap12 with parameters of type OMNamespace
SOAP12HeaderBlockImpl(java.lang.String localName, OMNamespace ns, SOAPFactory factory)
           
SOAP12HeaderBlockImpl(java.lang.String localName, OMNamespace ns, SOAPHeader parent, SOAPFactory factory)
           
SOAP12HeaderBlockImpl(java.lang.String localName, OMNamespace ns, SOAPHeader parent, OMXMLParserWrapper builder, SOAPFactory factory)
          Constructor SOAPHeaderBlockImpl