Uses of Interface
javax.xml.soap.SOAPElement
Packages that use SOAPElement
-
Uses of SOAPElement in javax.xml.soap
Subinterfaces of SOAPElement in javax.xml.soapModifier and TypeInterfaceDescriptioninterfaceA container forDetailEntryobjects.interfaceThe content for aDetailobject, giving details for aSOAPFaultobject.interfaceAn object that represents the contents of the SOAP body element in a SOAP message.interfaceASOAPBodyElementobject represents the contents in aSOAPBodyobject.interfaceThe container for the SOAPHeader and SOAPBody portions of aSOAPPartobject.interfaceAn element in theSOAPBodyobject that contains error and/or status information.interfaceA representation of the contents in aSOAPFaultobject.interfaceA representation of the SOAP header element.interfaceAn object representing the contents in the SOAP header part of the SOAP envelope.Methods in javax.xml.soap that return SOAPElementModifier and TypeMethodDescriptionSOAPElement.addAttribute(Name name, String value) Adds an attribute with the specified name and value to thisSOAPElementobject.SOAPElement.addChildElement(String localName) Creates a newSOAPElementobject initialized with the givenStringobject and adds the new element to thisSOAPElementobject.SOAPElement.addChildElement(String localName, String prefix) Creates a newSOAPElementobject initialized with the specified local name and prefix and adds the new element to thisSOAPElementobject.SOAPElement.addChildElement(String localName, String prefix, String uri) Creates a newSOAPElementobject initialized with the specified local name, prefix, and URI and adds the new element to thisSOAPElementobject.SOAPElement.addChildElement(Name name) Creates a newSOAPElementobject initialized with the givenNameobject and adds the new element to thisSOAPElementobject.SOAPElement.addChildElement(SOAPElement element) Add aSOAPElementas a child of thisSOAPElementinstance.SOAPElement.addNamespaceDeclaration(String prefix, String uri) Adds a namespace declaration with the specified prefix and URI to thisSOAPElementobject.SOAPElement.addTextNode(String text) Creates a newTextobject initialized with the givenStringand adds it to thisSOAPElementobject.Deprecated.Use javax.xml.soap.SOAPFactory.createElement(String localName) insteadDeprecated.Use javax.xml.soap.SOAPFactory.createElement(String localName, String prefix, String uri) insteadDeprecated.Use javax.xml.soap.SOAPFactory.createElement(javax.xml.soap.Name) insteadabstract SOAPElementSOAPFactory.createElement(String localName) Create aSOAPElementobject initialized with the given local name.abstract SOAPElementSOAPFactory.createElement(String localName, String prefix, String uri) Create a newSOAPElementobject with the given local name, prefix and uri.abstract SOAPElementSOAPFactory.createElement(Name name) Create aSOAPElementobject initialized with the givenNameobject.Node.getParentElement()Returns the parent element of thisNodeobject.Methods in javax.xml.soap with parameters of type SOAPElementModifier and TypeMethodDescriptionSOAPElement.addChildElement(SOAPElement element) Add aSOAPElementas a child of thisSOAPElementinstance.voidNode.setParentElement(SOAPElement parent) Sets the parent of thisNodeobject to the givenSOAPElementobject. -
Uses of SOAPElement in org.apache.axis.message
Classes in org.apache.axis.message that implement SOAPElementModifier and TypeClassDescriptionclassDetail Container implementationclassDetail Entry implementationclassclassMessageElement is the base type of nodes of the SOAP message parse tree.classclassclassAn RPC parameterclassHolder for body elements.classA Body element.classImplementation of a SOAP EnvelopeclassA Fault body element.classSOAP Fault implementationclassHolder for header elements.classA simple header element abstraction.Methods in org.apache.axis.message that return SOAPElementModifier and TypeMethodDescriptionMessageElement.addAttribute(Name attrName, String value) add a new attributeMessageElement.addChildElement(String localName) add a child element in the message element's own namespaceMessageElement.addChildElement(String localName, String prefixName) add a child elementMessageElement.addChildElement(String localName, String childPrefix, String uri) add a child elementMessageElement.addChildElement(Name childName) add the child elementMessageElement.addChildElement(SOAPElement element) The added child must be an instance of MessageElement rather than an abitrary SOAPElement otherwise a (wrapped) ClassCastException will be thrown.SOAPBody.addChildElement(String localName) SOAPBody.addChildElement(String localName, String prefix) SOAPBody.addChildElement(String localName, String prefix, String uri) SOAPBody.addChildElement(Name name) SOAPBody.addChildElement(SOAPElement element) SOAPHeader.addChildElement(String localName) SOAPHeader.addChildElement(String localName, String prefix) SOAPHeader.addChildElement(String localName, String prefix, String uri) SOAPHeader.addChildElement(Name name) SOAPHeader.addChildElement(SOAPElement element) MessageElement.addNamespaceDeclaration(String prefix, String uri) create aMappingmapping and add to our namespace list.MessageElement.addTextNode(String s) add a text node to the document.RPCParam.addTextNode(String s) NodeImpl.getParentElement()Returns the parent element of thisNodeobject.Methods in org.apache.axis.message with parameters of type SOAPElementModifier and TypeMethodDescriptionMessageElement.addChildElement(SOAPElement element) The added child must be an instance of MessageElement rather than an abitrary SOAPElement otherwise a (wrapped) ClassCastException will be thrown.SOAPBody.addChildElement(SOAPElement element) SOAPHeader.addChildElement(SOAPElement element) voidNodeImpl.setParentElement(SOAPElement parent) Sets the parent of thisNodeobject to the givenSOAPElementobject.voidSOAPBody.setParentElement(SOAPElement parent) voidSOAPBodyElement.setParentElement(SOAPElement parent) voidSOAPHeader.setParentElement(SOAPElement parent) voidSOAPHeaderElement.setParentElement(SOAPElement parent) -
Uses of SOAPElement in org.apache.axis.soap
Methods in org.apache.axis.soap that return SOAPElementModifier and TypeMethodDescriptionSOAPFactoryImpl.createElement(String localName) Create aSOAPElementobject initialized with the given local name.SOAPFactoryImpl.createElement(String localName, String prefix, String uri) Create a newSOAPElementobject with the given local name, prefix and uri.SOAPFactoryImpl.createElement(Name name) Create aSOAPElementobject initialized with the givenNameobject.