Uses of Interface
javax.xml.soap.Name

Packages that use Name
javax.xml.soap   
org.apache.axis2.jaxws.message.util.impl   
org.apache.axis2.saaj   
 

Uses of Name in javax.xml.soap
 

Methods in javax.xml.soap that return Name
 Name SOAPEnvelope.createName(java.lang.String localName)
          Creates a new Name object initialized with the given local name.
abstract  Name SOAPFactory.createName(java.lang.String localName)
          Creates a new Name object initialized with the given local name.
 Name SOAPEnvelope.createName(java.lang.String localName, java.lang.String prefix, java.lang.String uri)
          Creates a new Name object initialized with the given local name, namespace prefix, and namespace URI.
abstract  Name SOAPFactory.createName(java.lang.String localName, java.lang.String prefix, java.lang.String uri)
          Creates a new Name object initialized with the given local name, namespace prefix, and namespace URI.
 Name SOAPElement.getElementName()
          Returns the name of this SOAPElement object.
 Name SOAPFault.getFaultCodeAsName()
          Gets the mandatory SOAP 1.1 fault code for this SOAPFault object as a SAAJ Name object.
 

Methods in javax.xml.soap with parameters of type Name
 SOAPElement SOAPElement.addAttribute(Name name, java.lang.String value)
          Adds an attribute with the specified name and value to this SOAPElement object.
 SOAPBodyElement SOAPBody.addBodyElement(Name name)
          Creates a new SOAPBodyElement object with the specified name and adds it to this SOAPBody object.
 SOAPElement SOAPElement.addChildElement(Name name)
          Creates a new SOAPElement object initialized with the given Name object and adds the new element to this SOAPElement object.
 DetailEntry Detail.addDetailEntry(Name name)
          Creates a new DetailEntry object with the given name and adds it to this Detail object.
 SOAPFault SOAPBody.addFault(Name faultCode, java.lang.String faultString)
          Creates a new SOAPFault object and adds it to this SOAPBody object.
 SOAPFault SOAPBody.addFault(Name faultCode, java.lang.String faultString, java.util.Locale locale)
          Creates a new SOAPFault object and adds it to this SOAPBody object.
 SOAPHeaderElement SOAPHeader.addHeaderElement(Name name)
          Creates a new SOAPHeaderElement object initialized with the specified name and adds it to this SOAPHeader object.
 SOAPElement SOAPElementFactory.create(Name name)
          Deprecated. Use javax.xml.soap.SOAPFactory.createElement(javax.xml.soap.Name) instead
abstract  SOAPElement SOAPFactory.createElement(Name name)
          Create a SOAPElement object initialized with the given Name object.
 java.lang.String SOAPElement.getAttributeValue(Name name)
          Returns the value of the attribute with the specified name.
 java.util.Iterator SOAPElement.getChildElements(Name name)
          Returns an iterator over all the child elements with the specified name.
 boolean SOAPElement.removeAttribute(Name name)
          Removes the attribute with the specified name.
 void SOAPFault.setFaultCode(Name name)
          Sets this SOAPFault object with the given fault code.
 

Uses of Name in org.apache.axis2.jaxws.message.util.impl
 

Methods in org.apache.axis2.jaxws.message.util.impl that return Name
 Name SAAJConverterImpl.NameCreator.createName(java.lang.String localName, java.lang.String prefix, java.lang.String uri)
          Creates a Name
 

Uses of Name in org.apache.axis2.saaj
 

Classes in org.apache.axis2.saaj that implement Name
 class PrefixedQName
          Class Prefixed QName

Took this implementation from Axis 1.2 code

 

Methods in org.apache.axis2.saaj that return Name
 Name SOAPFactoryImpl.createName(java.lang.String localName)
          Creates a new Name object initialized with the given local name.
 Name SOAPEnvelopeImpl.createName(java.lang.String localName)
          Creates a new Name object initialized with the given local name.
 Name SOAPFactoryImpl.createName(java.lang.String localName, java.lang.String prefix, java.lang.String uri)
          Creates a new Name object initialized with the given local name, namespace prefix, and namespace URI.
 Name SOAPEnvelopeImpl.createName(java.lang.String localName, java.lang.String prefix, java.lang.String uri)
          Creates a new Name object initialized with the given local name, namespace prefix, and namespace URI.
 Name SOAPElementImpl.getElementName()
           
 Name SOAPFaultImpl.getFaultCodeAsName()
           
 

Methods in org.apache.axis2.saaj with parameters of type Name
 SOAPElement SOAPEnvelopeImpl.addAttribute(Name name, java.lang.String value)
          Override SOAPElement.addAttribute SOAP1.2 should not allow encodingStyle attribute to be set on Envelop
 SOAPElement SOAPElementImpl.addAttribute(Name name, java.lang.String value)
          Adds an attribute with the specified name and value to this SOAPElement object.
 SOAPBodyElement SOAPBodyImpl.addBodyElement(Name name)
          Creates a new SOAPBodyElement object with the specified name and adds it to this SOAPBody object.
 SOAPElement SOAPEnvelopeImpl.addChildElement(Name name)
          Override SOAPElement.addChildElement SOAP 1.2 should not allow element to be added after body element
 SOAPElement SOAPElementImpl.addChildElement(Name name)
           
 SOAPElement SOAPHeaderImpl.addChildElement(Name name)
           
 DetailEntry DetailImpl.addDetailEntry(Name name)
          Creates a new DetailEntry object with the given name and adds it to this Detail object.
 SOAPFault SOAPBodyImpl.addFault(Name faultCode, java.lang.String faultString)
          Creates a new SOAPFault object and adds it to this SOAPBody object.
 SOAPFault SOAPBodyImpl.addFault(Name faultCode, java.lang.String faultString, java.util.Locale locale)
          Creates a new SOAPFault object and adds it to this SOAPBody object.
 SOAPHeaderElement SOAPHeaderImpl.addHeaderElement(Name name)
          Creates a new SOAPHeaderElement object initialized with the specified name and adds it to this SOAPHeader object.
 SOAPElement SOAPFactoryImpl.createElement(Name name)
          Create a SOAPElement object initialized with the given Name object.
 java.lang.String SOAPElementImpl.getAttributeValue(Name name)
           
 java.util.Iterator SOAPFaultImpl.getChildElements(Name name)
           
 java.util.Iterator SOAPBodyImpl.getChildElements(Name name)
           
 java.util.Iterator SOAPElementImpl.getChildElements(Name name)
           
 java.util.Iterator SOAPHeaderImpl.getChildElements(Name name)
           
 boolean SOAPElementImpl.removeAttribute(Name name)
           
 void SOAPFaultImpl.setFaultCode(Name faultCodeName)
          Sets this SOAPFault object with the given fault code.Fault codes, which give information about the fault, are defined in the SOAP 1.1 specification.
 



Copyright © 2007 Apache Web Services Project. All Rights Reserved.