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

Packages that use OMNamespace
org.apache.axis2.clientapi   
org.apache.axis2.om   
org.apache.axis2.om.impl.llom   
org.apache.axis2.om.impl.llom.factory   
org.apache.axis2.saaj   
org.apache.axis2.soap   
org.apache.axis2.soap.impl.llom   
org.apache.axis2.soap.impl.llom.builder   
org.apache.axis2.soap.impl.llom.factory   
org.apache.axis2.soap.impl.llom.soap11   
org.apache.axis2.soap.impl.llom.soap12   
 

Uses of OMNamespace in org.apache.axis2.clientapi
 

Methods in org.apache.axis2.clientapi with parameters of type OMNamespace
static OMElement StubSupporter.createRPCMappedElement(java.lang.String elementName, OMNamespace ns, java.lang.Object value, OMFactory fac)
           
 

Uses of OMNamespace in org.apache.axis2.om
 

Methods in org.apache.axis2.om that return OMNamespace
 OMNamespace OMFactory.createOMNamespace(java.lang.String uri, java.lang.String prefix)
           
 OMNamespace OMElement.declareNamespace(java.lang.String uri, java.lang.String prefix)
          THis will create a namespace in the current element scope
 OMNamespace OMElement.declareNamespace(OMNamespace namespace)
           
 OMNamespace OMElement.findNamespace(java.lang.String uri, java.lang.String prefix)
          This will find a namespace with the given uri and prefix, in the scope of the hierarchy.
 OMNamespace OMElement.getNamespace()
           
 OMNamespace OMAttribute.getNamespace()
           
 

Methods in org.apache.axis2.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)
           
 OMAttribute OMFactory.createOMAttribute(java.lang.String localName, OMNamespace ns, java.lang.String value)
           
 OMNamespace OMElement.declareNamespace(OMNamespace namespace)
           
 OMAttribute OMElement.addAttribute(java.lang.String attributeName, java.lang.String value, OMNamespace ns)
           
 void OMElement.setNamespace(OMNamespace namespace)
          sets the Namespace
 void OMAttribute.setOMNamespace(OMNamespace omNamespace)
           
 

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

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

Fields in org.apache.axis2.om.impl.llom declared as OMNamespace
protected  OMNamespace OMTextImpl.ns
          Field nameSpace used when serialising Binary stuff as MTOM optimised
protected  OMNamespace OMElementImpl.ns
          Field ns
 

Methods in org.apache.axis2.om.impl.llom that return OMNamespace
 OMNamespace OMAttributeImpl.getNamespace()
          Method getNamespace
 OMNamespace OMElementImpl.declareNamespace(java.lang.String uri, java.lang.String prefix)
          THis will create a namespace in the current element scope
 OMNamespace OMElementImpl.declareNamespace(OMNamespace namespace)
           
 OMNamespace OMElementImpl.findNamespace(java.lang.String uri, java.lang.String prefix)
          This will find a namespace with the given uri and prefix, in the scope of the docuemnt.
 OMNamespace OMElementImpl.getNamespace()
          Method getNamespace
 

Methods in org.apache.axis2.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
static void OMSerializerUtil.serializeNamespace(OMNamespace namespace, OMOutputImpl omOutput)
          Method serializeNamespace
 

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

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

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

Methods in org.apache.axis2.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
 OMAttribute OMLinkedListImplFactory.createOMAttribute(java.lang.String localName, OMNamespace ns, java.lang.String value)
          create attribute
 

Uses of OMNamespace in org.apache.axis2.saaj
 

Constructors in org.apache.axis2.saaj with parameters of type OMNamespace
NodeImpl(OMNamespace ns)
          Constructor NodeImpl
 

Uses of OMNamespace in org.apache.axis2.soap
 

Methods in org.apache.axis2.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, 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.axis2.soap.impl.llom
 

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

Methods in org.apache.axis2.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.axis2.soap.impl.llom with parameters of type OMNamespace
SOAPHeaderBlockImpl(java.lang.String localName, OMNamespace ns, SOAPHeader parent)
           
SOAPHeaderBlockImpl(java.lang.String localName, OMNamespace ns, OMElement parent, OMXMLParserWrapper builder)
          Constructor SOAPHeaderBlockImpl
SOAPEnvelopeImpl(OMNamespace ns, SOAPFactory factory)
           
SOAPElement(java.lang.String localName, OMNamespace ns)
          Caution : This Constructor is meant to be used only by the SOAPEnvelope.
 

Uses of OMNamespace in org.apache.axis2.soap.impl.llom.builder
 

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

Uses of OMNamespace in org.apache.axis2.soap.impl.llom.factory
 

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

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

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

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

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

Methods in org.apache.axis2.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)
           
 

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