|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of OMElement in org.apache.axis2.addressing |
Methods in org.apache.axis2.addressing that return OMElement | |
OMElement |
EndpointReference.getPolicies()
|
Methods in org.apache.axis2.addressing with parameters of type OMElement | |
void |
MessageInformationHeaders.addReferenceParameter(OMElement referenceParameter)
|
void |
EndpointReference.setPolicies(OMElement policies)
|
Uses of OMElement in org.apache.axis2.clientapi |
Methods in org.apache.axis2.clientapi that return OMElement | |
OMElement |
RESTCall.invokeBlocking()
|
static OMElement |
StubSupporter.createRPCMappedElement(java.lang.String elementName,
OMNamespace ns,
java.lang.Object value,
OMFactory fac)
|
protected OMElement |
Stub.getElementFromReader(XMLStreamReader reader)
|
protected OMElement |
Stub.getElement(SOAPEnvelope env,
java.lang.String type)
Extract the correct element - A util method |
OMElement |
Call.invokeBlocking(java.lang.String axisop,
OMElement toSend)
Invoke the blocking/Synchronous call |
Methods in org.apache.axis2.clientapi with parameters of type OMElement | |
protected static void |
AbstractCallbackSupporter.optimizeContent(OMElement element,
javax.xml.namespace.QName[] qNames)
|
static java.lang.Object |
StubSupporter.getRPCMappedElementValue(OMElement elt,
java.lang.Class outputTypeClass)
|
protected MessageContext |
MEPClient.prepareTheSOAPEnvelope(OMElement toSend)
This class prepare the SOAP Envelope using the payload |
protected void |
Stub.setValueDoc(SOAPEnvelope env,
OMElement value)
|
protected void |
Stub.setValueDoc(SOAPEnvelope env,
OMElement value,
boolean isHeader)
|
OMElement |
Call.invokeBlocking(java.lang.String axisop,
OMElement toSend)
Invoke the blocking/Synchronous call |
void |
Call.invokeNonBlocking(java.lang.String axisop,
OMElement toSend,
Callback callback)
Invoke the nonblocking/Asynchronous call |
void |
MessageSender.send(java.lang.String opName,
OMElement toSend)
Send the SOAP Message, the actual worker |
Uses of OMElement in org.apache.axis2.databinding |
Methods in org.apache.axis2.databinding that return OMElement | |
OMElement |
DeserializationContext.getMultiref(java.lang.String id)
|
Methods in org.apache.axis2.databinding with parameters of type OMElement | |
void |
DeserializationContext.addMultiref(java.lang.String id,
OMElement element)
|
void |
DeserializationContext.idFound(java.lang.String id,
OMElement element)
|
void |
DeserializationContext.processRest(OMElement rpcElement)
|
Uses of OMElement in org.apache.axis2.deployment |
Methods in org.apache.axis2.deployment that return OMElement | |
OMElement |
DescriptionBuilder.buildOM()
This will creat OMElemnt for a given services.xml |
Methods in org.apache.axis2.deployment with parameters of type OMElement | |
protected Flow |
DescriptionBuilder.processFlow(OMElement flowelement,
ParameterInclude parent)
To process Flow elements in services.xml |
protected HandlerDescription |
DescriptionBuilder.processHandler(OMElement handler_element,
ParameterInclude parent)
To process Handler element |
protected MessageReceiver |
DescriptionBuilder.loadMessageReceiver(java.lang.ClassLoader loader,
OMElement reciverElement)
|
void |
ServiceBuilder.populateService(OMElement service_element)
top most method that used to populate service from corresponding OM |
Constructors in org.apache.axis2.deployment with parameters of type OMElement | |
ServiceGroupBuilder(OMElement servcice,
DeploymentEngine engine)
|
Uses of OMElement in org.apache.axis2.description |
Methods in org.apache.axis2.description that return OMElement | |
OMElement |
ParameterImpl.getParameterElement()
|
OMElement |
Parameter.getParameterElement()
To get the whole paramter element |
Methods in org.apache.axis2.description with parameters of type OMElement | |
void |
ParameterImpl.setParameterElement(OMElement element)
|
void |
Parameter.setParameterElement(OMElement element)
Paramter can be any thing it can be XML element with number of child elements , so if some one wants to access the XML elemet we need to store that , at the deployment time , to store the XMLelment of the parameter can use this method it will store whole |
Uses of OMElement in org.apache.axis2.om |
Methods in org.apache.axis2.om that return OMElement | |
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(java.lang.String localName,
java.lang.String namespaceURI,
java.lang.String namespacePrefix)
This is almost the same as as createOMElement(localName,OMNamespace) method above. |
OMElement |
OMFactory.createOMElement(javax.xml.namespace.QName qname,
OMContainer parent)
QName(localPart), QName(namespaceURI, localPart) - a prefix will be assigned to this QName(namespaceURI, localPart, prefix) |
OMElement |
OMXMLParserWrapper.getDocumentElement()
|
OMElement |
OMElement.getFirstChildWithName(javax.xml.namespace.QName elementQName)
This will return the first matched child, return null if none found |
OMElement |
OMElement.getFirstElement()
Convenience extension of the getFirstChild |
OMElement |
OMDocument.getDocumentElement()
Returns the document element |
OMElement |
OMContainer.getFirstChildWithName(javax.xml.namespace.QName elementQName)
|
Methods in org.apache.axis2.om with parameters of type OMElement | |
OMText |
OMFactory.createText(OMElement parent,
java.lang.String text)
|
OMText |
OMFactory.createText(OMElement parent,
java.lang.String s,
java.lang.String mimeType,
boolean optimize)
|
void |
OMXMLParserWrapper.discard(OMElement el)
Discard the current element This should remove the given element and its decendants. |
void |
OMDocument.setDocumentElement(OMElement rootElement)
Sets the document element of the XML document |
Uses of OMElement in org.apache.axis2.om.impl.llom |
Classes in org.apache.axis2.om.impl.llom that implement OMElement | |
class |
OMElementImpl
Class OMElementImpl |
Fields in org.apache.axis2.om.impl.llom declared as OMElement | |
protected OMElement |
OMDocumentImpl.rootElement
Field rootElement |
Methods in org.apache.axis2.om.impl.llom that return OMElement | |
OMElement |
OMDocumentImpl.getDocumentElement()
Method getRootElement |
OMElement |
OMDocumentImpl.getFirstChildWithName(javax.xml.namespace.QName elementQName)
Method getFirstChildWithName |
OMElement |
OMElementImpl.getFirstChildWithName(javax.xml.namespace.QName elementQName)
Method getFirstChildWithName |
OMElement |
OMElementImpl.getFirstElement()
Get first element |
Methods in org.apache.axis2.om.impl.llom with parameters of type OMElement | |
void |
OMDocumentImpl.setDocumentElement(OMElement rootElement)
Method setRootElement |
Constructors in org.apache.axis2.om.impl.llom with parameters of type OMElement | |
OMTextImpl(OMElement parent,
java.lang.String text)
Constructor OMTextImpl |
|
OMTextImpl(OMElement parent,
java.lang.String s,
java.lang.String mimeType,
boolean optimize)
|
|
OMTextImpl(java.lang.String contentID,
OMElement parent,
OMXMLParserWrapper builder)
|
|
OMDocumentImpl(OMElement rootElement,
OMXMLParserWrapper parserWrapper)
|
Uses of OMElement in org.apache.axis2.om.impl.llom.builder |
Methods in org.apache.axis2.om.impl.llom.builder that return OMElement | |
OMElement |
StAXOMBuilder.getDocumentElement()
Method getDocumentElement |
protected OMElement |
SAXOMBuilder.createNextElement(java.lang.String localName)
|
OMElement |
SAXOMBuilder.getRootElement()
|
Methods in org.apache.axis2.om.impl.llom.builder with parameters of type OMElement | |
protected abstract void |
StAXBuilder.processNamespaceData(OMElement node,
boolean isSOAPElement)
Method processNamespaceData |
protected void |
StAXBuilder.processAttributes(OMElement node)
Method processAttributes |
void |
StAXBuilder.discard(OMElement el)
Method discard |
protected void |
StAXOMBuilder.processNamespaceData(OMElement node,
boolean isSOAPElement)
Method processNamespaceData |
Uses of OMElement in org.apache.axis2.om.impl.llom.factory |
Methods in org.apache.axis2.om.impl.llom.factory that return OMElement | |
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(java.lang.String localName,
java.lang.String namespaceURI,
java.lang.String namespacePrefix)
Method createOMElement |
OMElement |
OMLinkedListImplFactory.createOMElement(javax.xml.namespace.QName qname,
OMContainer parent)
Method createOMElement |
Methods in org.apache.axis2.om.impl.llom.factory with parameters of type OMElement | |
OMText |
OMLinkedListImplFactory.createText(OMElement parent,
java.lang.String text)
Method createText |
OMText |
OMLinkedListImplFactory.createText(OMElement parent,
java.lang.String s,
java.lang.String mimeType,
boolean optimize)
create text |
Uses of OMElement in org.apache.axis2.om.impl.llom.traverse |
Constructors in org.apache.axis2.om.impl.llom.traverse with parameters of type OMElement | |
OMChildElementIterator(OMElement currentChild)
Constructor OMChildrenIterator |
Uses of OMElement in org.apache.axis2.om.impl.llom.util |
Methods in org.apache.axis2.om.impl.llom.util with parameters of type OMElement | |
boolean |
XMLComparator.compare(OMElement elementOne,
OMElement elementTwo)
|
Uses of OMElement in org.apache.axis2.rpc |
Classes in org.apache.axis2.rpc that implement OMElement | |
class |
RPCRequestElement
RPCResponseElement |
class |
RPCResponseElement
RPCResponseElement |
Constructors in org.apache.axis2.rpc with parameters of type OMElement | |
RPCRequestElement(RPCMethod method,
OMElement parent)
|
|
RPCResponseElement(RPCMethod method,
OMElement parent)
|
Uses of OMElement in org.apache.axis2.saaj |
Fields in org.apache.axis2.saaj declared as OMElement | |
protected OMElement |
SOAPElementImpl.omElement
Field omElement The corresponding OM object for SOAPElement is OMElement, so we would have a datamember of type OMElement in this class |
Methods in org.apache.axis2.saaj that return OMElement | |
OMElement |
SOAPElementImpl.getOMElement()
Method getOMElement getter method on the data member omElement |
Methods in org.apache.axis2.saaj with parameters of type OMElement | |
protected javax.xml.soap.DetailEntry |
DetailImpl.addDetailEntry(OMElement detailEntry)
Method addDetailEntry |
Constructors in org.apache.axis2.saaj with parameters of type OMElement | |
SOAPElementImpl(OMElement omElement)
Constructor SOAPElementImpl The standard constructor for being able to create SOAPElement given a omElement |
|
SOAPBodyElementImpl(OMElement bodyElement)
Constructor SOAPBodeElementImpl |
|
DetailEntryImpl(OMElement detailEntry)
Constructor DetailEntryImpl |
Uses of OMElement in org.apache.axis2.soap |
Subinterfaces of OMElement in org.apache.axis2.soap | |
interface |
SOAPBody
An object that represents the contents of the SOAP body element in a SOAP message. |
interface |
SOAPEnvelope
Interface SOAPEnvelope |
interface |
SOAPFault
An element in the SOAPBody object that contains
error and/or status information. |
interface |
SOAPFaultCode
|
interface |
SOAPFaultDetail
The Detail element information item is intended for carrying application specific error information related to the SOAP Body . |
interface |
SOAPFaultNode
|
interface |
SOAPFaultReason
|
interface |
SOAPFaultRole
The Role element information item identifies the role the node was operating in at the point the fault occurred. |
interface |
SOAPFaultSubCode
|
interface |
SOAPFaultText
|
interface |
SOAPFaultValue
|
interface |
SOAPHeader
Interface SOAPHeader |
interface |
SOAPHeaderBlock
An object representing the contents in the SOAP header part of the SOAP envelope. |
Methods in org.apache.axis2.soap with parameters of type OMElement | |
void |
SOAPFaultDetail.addDetailEntry(OMElement detailElement)
Eran Chinthaka (chinthaka@apache.org) |
Uses of OMElement in org.apache.axis2.soap.impl.llom |
Classes in org.apache.axis2.soap.impl.llom that implement OMElement | |
class |
SOAPBodyImpl
Class SOAPBodyImpl |
class |
SOAPElement
|
class |
SOAPEnvelopeImpl
Class SOAPEnvelopeImpl |
class |
SOAPFaultCodeImpl
|
class |
SOAPFaultDetailImpl
|
class |
SOAPFaultImpl
Class SOAPFaultImpl |
class |
SOAPFaultNodeImpl
|
class |
SOAPFaultReasonImpl
|
class |
SOAPFaultRoleImpl
|
class |
SOAPFaultSubCodeImpl
|
class |
SOAPFaultTextImpl
|
class |
SOAPFaultValueImpl
|
class |
SOAPHeaderBlockImpl
Class SOAPHeaderBlockImpl |
class |
SOAPHeaderImpl
Class SOAPHeaderImpl |
class |
SOAPTextImpl
|
Methods in org.apache.axis2.soap.impl.llom that return OMElement | |
protected OMElement |
SOAPFaultImpl.getChildWithName(java.lang.String childName)
|
Methods in org.apache.axis2.soap.impl.llom with parameters of type OMElement | |
protected void |
SOAPTextImpl.checkParent(OMElement parent)
|
protected void |
SOAPHeaderImpl.checkParent(OMElement parent)
|
void |
SOAPFaultDetailImpl.addDetailEntry(OMElement detailElement)
|
protected void |
SOAPEnvelopeImpl.checkParent(OMElement parent)
|
protected abstract void |
SOAPElement.checkParent(OMElement parent)
This has to be implemented by all the derived classes to check for the correct parent. |
protected void |
SOAPBodyImpl.checkParent(OMElement parent)
|
void |
SOAPMessageImpl.setDocumentElement(OMElement rootElement)
|
protected void |
SOAPFaultImpl.setNewElement(OMElement myElement,
OMElement newElement)
|
Constructors in org.apache.axis2.soap.impl.llom with parameters of type OMElement | |
SOAPTextImpl(OMElement parent)
|
|
SOAPTextImpl(OMElement parent,
OMXMLParserWrapper builder)
|
|
SOAPHeaderBlockImpl(java.lang.String localName,
OMNamespace ns,
OMElement parent,
OMXMLParserWrapper builder)
Constructor SOAPHeaderBlockImpl |
|
SOAPElement(OMElement parent,
java.lang.String localName,
boolean extractNamespaceFromParent)
|
|
SOAPElement(OMElement parent,
java.lang.String localName,
OMXMLParserWrapper builder)
|
|
SOAPFaultReasonImpl(OMElement parent,
boolean extractNamespaceFromParent)
|
|
SOAPFaultSubCodeImpl(OMElement parent,
java.lang.String localName)
|
|
SOAPFaultSubCodeImpl(OMElement parent,
java.lang.String localName,
OMXMLParserWrapper builder)
|
|
SOAPFaultValueImpl(OMElement parent)
|
|
SOAPFaultValueImpl(OMElement parent,
OMXMLParserWrapper builder)
|
Uses of OMElement in org.apache.axis2.soap.impl.llom.builder |
Methods in org.apache.axis2.soap.impl.llom.builder that return OMElement | |
OMElement |
SOAP12BuilderHelper.handleEvent(XMLStreamReader parser,
OMElement parent,
int elementLevel)
|
OMElement |
SOAP11BuilderHelper.handleEvent(XMLStreamReader parser,
OMElement parent,
int elementLevel)
|
protected OMElement |
StAXSOAPModelBuilder.constructNode(OMElement parent,
java.lang.String elementName,
boolean isEnvelope)
Method constructNode |
OMElement |
StAXSOAPModelBuilder.getDocumentElement()
Method getDocumentElement |
abstract OMElement |
SOAPBuilderHelper.handleEvent(XMLStreamReader parser,
OMElement element,
int elementLevel)
|
Methods in org.apache.axis2.soap.impl.llom.builder with parameters of type OMElement | |
OMElement |
SOAP12BuilderHelper.handleEvent(XMLStreamReader parser,
OMElement parent,
int elementLevel)
|
OMElement |
SOAP11BuilderHelper.handleEvent(XMLStreamReader parser,
OMElement parent,
int elementLevel)
|
protected OMElement |
StAXSOAPModelBuilder.constructNode(OMElement parent,
java.lang.String elementName,
boolean isEnvelope)
Method constructNode |
protected void |
StAXSOAPModelBuilder.processNamespaceData(OMElement node,
boolean isSOAPElement)
Method processNamespaceData |
abstract OMElement |
SOAPBuilderHelper.handleEvent(XMLStreamReader parser,
OMElement element,
int elementLevel)
|
protected void |
SOAPBuilderHelper.processNamespaceData(OMElement node,
boolean isSOAPElement)
|
protected void |
SOAPBuilderHelper.processAttributes(OMElement node)
|
Uses of OMElement in org.apache.axis2.soap.impl.llom.soap11 |
Classes in org.apache.axis2.soap.impl.llom.soap11 that implement OMElement | |
class |
SOAP11BodyImpl
|
class |
SOAP11FaultCodeImpl
|
class |
SOAP11FaultDetailImpl
|
class |
SOAP11FaultImpl
|
class |
SOAP11FaultNodeImpl
|
class |
SOAP11FaultReasonImpl
|
class |
SOAP11FaultRoleImpl
|
class |
SOAP11FaultSubCodeImpl
|
class |
SOAP11FaultTextImpl
|
class |
SOAP11FaultValueImpl
|
class |
SOAP11HeaderBlockImpl
|
class |
SOAP11HeaderImpl
|
Methods in org.apache.axis2.soap.impl.llom.soap11 with parameters of type OMElement | |
protected void |
SOAP11FaultValueImpl.checkParent(OMElement parent)
|
protected void |
SOAP11FaultTextImpl.checkParent(OMElement parent)
|
protected void |
SOAP11FaultImpl.checkParent(OMElement parent)
|
protected void |
SOAP11FaultRoleImpl.checkParent(OMElement parent)
|
protected void |
SOAP11FaultNodeImpl.checkParent(OMElement parent)
|
protected void |
SOAP11FaultSubCodeImpl.checkParent(OMElement parent)
|
protected void |
SOAP11FaultDetailImpl.checkParent(OMElement parent)
|
protected void |
SOAP11FaultCodeImpl.checkParent(OMElement parent)
|
protected void |
SOAP11HeaderBlockImpl.checkParent(OMElement parent)
|
protected void |
SOAP11FaultReasonImpl.checkParent(OMElement parent)
|
Constructors in org.apache.axis2.soap.impl.llom.soap11 with parameters of type OMElement | |
SOAP11FaultValueImpl(OMElement parent)
|
|
SOAP11FaultValueImpl(OMElement parent,
OMXMLParserWrapper builder)
|
|
SOAP11HeaderBlockImpl(java.lang.String localName,
OMNamespace ns,
OMElement parent,
OMXMLParserWrapper builder)
Constructor SOAPHeaderBlockImpl |
Uses of OMElement in org.apache.axis2.soap.impl.llom.soap12 |
Classes in org.apache.axis2.soap.impl.llom.soap12 that implement OMElement | |
class |
SOAP12BodyImpl
|
class |
SOAP12FaultCodeImpl
|
class |
SOAP12FaultDetailImpl
|
class |
SOAP12FaultImpl
|
class |
SOAP12FaultNodeImpl
|
class |
SOAP12FaultReasonImpl
|
class |
SOAP12FaultRoleImpl
|
class |
SOAP12FaultSubCodeImpl
|
class |
SOAP12FaultTextImpl
|
class |
SOAP12FaultValueImpl
|
class |
SOAP12HeaderBlockImpl
|
class |
SOAP12HeaderImpl
|
Methods in org.apache.axis2.soap.impl.llom.soap12 with parameters of type OMElement | |
protected void |
SOAP12FaultValueImpl.checkParent(OMElement parent)
|
protected void |
SOAP12FaultTextImpl.checkParent(OMElement parent)
|
protected void |
SOAP12FaultImpl.checkParent(OMElement parent)
|
protected void |
SOAP12FaultRoleImpl.checkParent(OMElement parent)
|
protected void |
SOAP12FaultNodeImpl.checkParent(OMElement parent)
|
protected void |
SOAP12FaultSubCodeImpl.checkParent(OMElement parent)
|
protected void |
SOAP12FaultDetailImpl.checkParent(OMElement parent)
|
protected void |
SOAP12FaultCodeImpl.checkParent(OMElement parent)
|
protected void |
SOAP12HeaderBlockImpl.checkParent(OMElement parent)
|
protected void |
SOAP12FaultReasonImpl.checkParent(OMElement parent)
|
Constructors in org.apache.axis2.soap.impl.llom.soap12 with parameters of type OMElement | |
SOAP12FaultValueImpl(OMElement parent)
|
|
SOAP12FaultValueImpl(OMElement parent,
OMXMLParserWrapper builder)
|
Uses of OMElement in org.apache.axis2.soap.impl.llom.util |
Methods in org.apache.axis2.soap.impl.llom.util that return OMElement | |
static OMElement |
UtilProvider.getChildWithName(OMElement parent,
java.lang.String childName)
|
Methods in org.apache.axis2.soap.impl.llom.util with parameters of type OMElement | |
static void |
UtilProvider.setNewElement(OMElement parent,
OMElement myElement,
OMElement newElement)
|
static OMElement |
UtilProvider.getChildWithName(OMElement parent,
java.lang.String childName)
|
Uses of OMElement in org.apache.axis2.transport.http |
Fields in org.apache.axis2.transport.http declared as OMElement | |
protected OMElement |
CommonsHTTPTransportSender.outputMessage
|
Methods in org.apache.axis2.transport.http with parameters of type OMElement | |
void |
CommonsHTTPTransportSender.writeMessageWithCommons(MessageContext msgContext,
EndpointReference toURL,
OMElement dataout)
|
Constructors in org.apache.axis2.transport.http with parameters of type OMElement | |
CommonsHTTPTransportSender.AxisRequestEntity(OMElement element,
boolean chuncked,
MessageContext msgCtxt,
java.lang.String charSetEncoding,
java.lang.String soapActionString)
|
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |