Uses of Interface
org.apache.ws.commons.om.OMNamespace

Packages that use OMNamespace
org.apache.ws.commons.om   
org.apache.ws.commons.om.impl.llom   
org.apache.ws.commons.om.impl.llom.factory   
org.apache.ws.commons.soap   
org.apache.ws.commons.soap.impl.builder   
org.apache.ws.commons.soap.impl.llom   
org.apache.ws.commons.soap.impl.llom.soap11   
org.apache.ws.commons.soap.impl.llom.soap12   
 

Uses of OMNamespace in org.apache.ws.commons.om
 

Methods in org.apache.ws.commons.om that return OMNamespace
 OMNamespace OMElement.declareNamespace(java.lang.String uri, java.lang.String prefix)
          Creates a namespace in the current element scope.
 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()
           
 OMNamespace OMAttribute.getNamespace()
           
 OMNamespace OMFactory.createOMNamespace(java.lang.String uri, java.lang.String prefix)
           
 

Methods in org.apache.ws.commons.om with parameters of type 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 OMAttribute.setOMNamespace(OMNamespace 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)
           
 

Uses of OMNamespace in org.apache.ws.commons.om.impl.llom
 

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

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

Methods in org.apache.ws.commons.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.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.
 

Methods in org.apache.ws.commons.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.ws.commons.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.
 

Uses of OMNamespace in org.apache.ws.commons.om.impl.llom.factory
 

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

Methods in org.apache.ws.commons.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)
          Creates attribute.
 

Uses of OMNamespace in org.apache.ws.commons.soap
 

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

Methods in org.apache.ws.commons.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.ws.commons.soap.impl.builder
 

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

Uses of OMNamespace in org.apache.ws.commons.soap.impl.llom
 

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

Methods in org.apache.ws.commons.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.ws.commons.soap.impl.llom with parameters of type OMNamespace
SOAPFaultDetailImpl(OMNamespace ns, SOAPFactory factory)
           
SOAPHeaderImpl(OMNamespace ns, SOAPFactory factory)
           
SOAPFaultSubCodeImpl(OMNamespace ns, SOAPFactory factory)
           
SOAPFaultReasonImpl(OMNamespace ns, SOAPFactory factory)
           
SOAPFaultRoleImpl(OMNamespace ns, SOAPFactory factory)
           
SOAPFaultTextImpl(OMNamespace ns, SOAPFactory factory)
           
SOAPFaultValueImpl(OMNamespace ns, SOAPFactory factory)
           
SOAPEnvelopeImpl(OMNamespace ns, SOAPFactory factory)
           
SOAPElement(java.lang.String localName, OMNamespace ns, SOAPFactory factory)
           
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.
SOAPFaultCodeImpl(OMNamespace ns, SOAPFactory factory)
           
SOAPBodyImpl(java.lang.String localName, OMNamespace ns, SOAPFactory factory)
           
SOAPFaultImpl(OMNamespace ns, SOAPFactory factory)
           
SOAPFaultNodeImpl(OMNamespace ns, SOAPFactory factory)
           
 

Uses of OMNamespace in org.apache.ws.commons.soap.impl.llom.soap11
 

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

Methods in org.apache.ws.commons.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.ws.commons.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.ws.commons.soap.impl.llom.soap12
 

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

Methods in org.apache.ws.commons.soap.impl.llom.soap12 with parameters of type OMNamespace
 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)
           
 SOAPHeaderBlock SOAP12HeaderImpl.addHeaderBlock(java.lang.String localName, OMNamespace ns)
           
 

Constructors in org.apache.ws.commons.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