Uses of Class
org.apache.axiom.om.OMException

Packages that use OMException
org.apache.axiom.attachments   
org.apache.axiom.om   
org.apache.axiom.om.impl   
org.apache.axiom.om.impl.builder   
org.apache.axiom.om.impl.dom   
org.apache.axiom.om.impl.dom.factory   
org.apache.axiom.om.impl.exception   
org.apache.axiom.om.impl.llom   
org.apache.axiom.om.impl.llom.factory   
org.apache.axiom.om.impl.mtom   
org.apache.axiom.soap   
org.apache.axiom.soap.impl.builder   
org.apache.axiom.soap.impl.dom   
org.apache.axiom.soap.impl.dom.soap11   
org.apache.axiom.soap.impl.dom.soap12   
org.apache.axiom.soap.impl.llom   
org.apache.axiom.soap.impl.llom.soap11   
org.apache.axiom.soap.impl.llom.soap12   
 

Uses of OMException in org.apache.axiom.attachments
 

Methods in org.apache.axiom.attachments that throw OMException
abstract  IncomingAttachmentInputStream IncomingAttachmentStreams.getNextStream()
          Returns the next attachment stream in sequence.
 IncomingAttachmentInputStream MultipartAttachmentStreams.getNextStream()
           
 java.io.InputStream Attachments.getSOAPPartInputStream()
           
 

Constructors in org.apache.axiom.attachments that throw OMException
Attachments(java.io.InputStream inStream, java.lang.String contentTypeString)
          Sets file cache to false.
Attachments(java.io.InputStream inStream, java.lang.String contentTypeString, boolean fileCacheEnable, java.lang.String attachmentRepoDir, java.lang.String fileThreshold)
          Moves the pointer to the beginning of the first MIME part.
MultipartAttachmentStreams(BoundaryDelimitedStream delimitedStream)
           
 

Uses of OMException in org.apache.axiom.om
 

Subclasses of OMException in org.apache.axiom.om
 class OMFactoryException
          Class OMFactoryException
 

Methods in org.apache.axiom.om that throw OMException
 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 OMFactory.createOMElement(java.lang.String localName, OMNamespace ns, OMContainer parent)
           
 OMNode OMNode.detach()
          Removes a node (and all of its children) from its containing parent.
 void OMNode.discard()
          Discards a node.
 void OMXMLParserWrapper.discard(OMElement el)
          Discards the current element.
 java.util.Iterator OMElement.getAllDeclaredNamespaces()
          Returns an iterator for all of the namespaces declared on this element.
 OMElement OMContainer.getFirstChildWithName(javax.xml.namespace.QName elementQName)
          Returns the first child in document order that matches the given QName criteria.
 OMNamespace OMElement.getNamespace()
           
 OMNode OMNode.getNextOMSibling()
          Returns the next sibling in document order.
 void OMNode.insertSiblingAfter(OMNode sibling)
          Inserts a new sibling after the current node.
 void OMNode.insertSiblingBefore(OMNode sibling)
          Inserts a sibling just before the current node.
 int OMXMLParserWrapper.next()
          Proceed the parser one step and return the event value.
 void OMXMLParserWrapper.setCache(boolean b)
           
 

Uses of OMException in org.apache.axiom.om.impl
 

Methods in org.apache.axiom.om.impl that throw OMException
 void OMNodeEx.setType(int nodeType)
           
 

Uses of OMException in org.apache.axiom.om.impl.builder
 

Methods in org.apache.axiom.om.impl.builder that throw OMException
protected  OMNode StAXOMBuilder.createComment()
          Method createOMText.
protected  OMNode StAXOMBuilder.createDTD()
          Method createDTD.
protected  OMElement SAXOMBuilder.createNextElement(java.lang.String localName)
           
protected abstract  OMNode StAXBuilder.createOMElement()
          This method is called with the XMLStreamConstants.START_ELEMENT event.
protected  OMNode StAXOMBuilder.createOMElement()
          Method createOMElement.
protected  OMNode StAXBuilder.createOMText(int textType)
          Method createOMText.
protected  OMNode StAXOMBuilder.createPI()
          Method createPI.
 void StAXBuilder.discard(OMElement el)
          Method discard.
 int StAXBuilder.getAttributeCount()
          Method getAttributeCount.
 java.lang.String StAXBuilder.getAttributeName(int arg)
          Method getAttributeName.
 java.lang.String StAXBuilder.getAttributeNamespace(int arg)
          Method getAttributeNamespace.
 java.lang.String StAXBuilder.getAttributePrefix(int arg)
          Method getAttributePrefix.
 java.lang.String StAXBuilder.getName()
          Method getName.
 java.lang.String StAXBuilder.getNamespace()
          Method getNamespace.
 int StAXBuilder.getNamespaceCount()
          Method getNamespaceCount.
 java.lang.String StAXBuilder.getNamespacePrefix(int index)
          Method getNamespacePrefix.
 java.lang.String StAXBuilder.getNamespaceUri(int index)
          Method getNamespaceUri.
 java.lang.String StAXBuilder.getPrefix()
          Method getPrefix.
 java.lang.String StAXBuilder.getText()
          Method getText.
abstract  int StAXBuilder.next()
          Forwards the parser one step further, if parser is not completed yet.
 int StAXOMBuilder.next()
          Method next.
 void StAXBuilder.reset(OMNode node)
          Method reset.
 

Uses of OMException in org.apache.axiom.om.impl.dom
 

Subclasses of OMException in org.apache.axiom.om.impl.dom
 class OMDOMException
          OMDOM specific exception
 

Methods in org.apache.axiom.om.impl.dom that throw OMException
 OMNode AttrImpl.detach()
          Not supported: Cannot detach attributes.
 OMNode ChildNode.detach()
           
 void AttrImpl.discard()
          Not supported: Cannot discard attributes.
 void ChildNode.discard()
           
 void ElementImpl.discard()
           
 void TextImpl.discard()
           
 java.util.Iterator ElementImpl.getAllDeclaredNamespaces()
           
 java.util.Iterator ParentNode.getChildrenWithName(javax.xml.namespace.QName elementQName)
          Returns an iterator of child nodes having a given qname.
 OMElement ParentNode.getFirstChildWithName(javax.xml.namespace.QName elementQName)
          Returns the first OMElement child node.
 java.io.InputStream TextImpl.getInputStream()
           
 OMNamespace ElementImpl.getNamespace()
          Returns the namespace of this element.
 OMNode ChildNode.getNextOMSibling()
           
 OMNode ElementImpl.getNextOMSibling()
           
 OMNode DocumentImpl.getNextOMSibling()
           
 OMContainer ChildNode.getParent()
           
 OMContainer NodeImpl.getParent()
           
 OMContainer DocumentImpl.getParent()
           
 int ElementImpl.getType()
           
 int DocumentFragmentimpl.getType()
           
 int TextImpl.getType()
           
 int DocumentImpl.getType()
           
 void ChildNode.insertSiblingAfter(OMNode sibling)
          Inserts the given sibling next to this item.
 void NodeImpl.insertSiblingAfter(OMNode sibling)
           
 void ChildNode.insertSiblingBefore(OMNode sibling)
          Inserts the given sibling before this item.
 void NodeImpl.insertSiblingBefore(OMNode sibling)
           
 void AttrImpl.setType(int nodeType)
          Sets the type.
 void CommentImpl.setType(int nodeType)
           
 void ElementImpl.setType(int nodeType)
           
 void DocumentFragmentimpl.setType(int nodeType)
           
 void TextImpl.setType(int nodeType)
           
 void DocumentImpl.setType(int nodeType)
           
 

Uses of OMException in org.apache.axiom.om.impl.dom.factory
 

Methods in org.apache.axiom.om.impl.dom.factory that throw OMException
 OMElement OMDOMFactory.createOMElement(javax.xml.namespace.QName qname, OMContainer parent)
          Creates a new OMDOM Element node and adds it to the given parent.
 

Uses of OMException in org.apache.axiom.om.impl.exception
 

Subclasses of OMException in org.apache.axiom.om.impl.exception
 class OMBuilderException
          Class OMBuilderException
 class OMStreamingException
          Class OMStreamingException
 

Uses of OMException in org.apache.axiom.om.impl.llom
 

Methods in org.apache.axiom.om.impl.llom that throw OMException
 void OMSourcedElementImpl.build()
           
 void OMElementImpl.build()
           
 void OMNodeImpl.build()
          Parses this node and builds the object structure in memory.
 OMNode OMSourcedElementImpl.detach()
           
 OMNode OMElementImpl.detach()
          Removes this information item and its children, from the model completely.
 OMNode OMNodeImpl.detach()
          Removes this information item and its children, from the model completely.
 void OMSourcedElementImpl.discard()
           
 void OMProcessingInstructionImpl.discard()
          Discards this node.
 void OMElementImpl.discard()
          Method discard.
 void OMDocTypeImpl.discard()
          Discards this node.
 void OMTextImpl.discard()
          A slightly different implementation of the discard method.
 void OMCommentImpl.discard()
          Discards this node.
 java.util.Iterator OMSourcedElementImpl.getAllDeclaredNamespaces()
           
 OMElement OMSourcedElementImpl.getFirstChildWithName(javax.xml.namespace.QName elementQName)
           
 OMElement OMDocumentImpl.getFirstChildWithName(javax.xml.namespace.QName elementQName)
          Method getFirstChildWithName.
 OMElement OMElementImpl.getFirstChildWithName(javax.xml.namespace.QName elementQName)
          Method getFirstChildWithName.
 java.io.InputStream OMTextImpl.getInputStream()
           
 OMNamespace OMSourcedElementImpl.getNamespace()
           
 OMNamespace OMElementImpl.getNamespace()
          Method getNamespace.
 OMNode OMSourcedElementImpl.getNextOMSibling()
           
 OMNode OMElementImpl.getNextOMSibling()
          Gets the next sibling.
 OMNode OMNodeImpl.getNextOMSibling()
          Returns the next sibling.
 java.lang.String OMTextImpl.getText()
          Returns the value.
 javax.xml.namespace.QName OMTextImpl.getTextAsQName()
          Returns the value.
 void OMNodeImpl.insertSiblingAfter(OMNode sibling)
          Inserts a sibling just after the current information item.
 void OMNodeImpl.insertSiblingBefore(OMNode sibling)
          Inserts a sibling just before the current information item.
 void OMNodeImpl.setType(int nodeType)
          Method setType.
 

Constructors in org.apache.axiom.om.impl.llom that throw OMException
OMElementImpl(javax.xml.namespace.QName qname, OMContainer parent, OMFactory factory)
          It is assumed that the QName passed contains, at least, the localName for this element.
 

Uses of OMException in org.apache.axiom.om.impl.llom.factory
 

Methods in org.apache.axiom.om.impl.llom.factory that throw OMException
 OMElement OMLinkedListImplFactory.createOMElement(javax.xml.namespace.QName qname, OMContainer parent)
          Method createOMElement.
 

Uses of OMException in org.apache.axiom.om.impl.mtom
 

Methods in org.apache.axiom.om.impl.mtom that throw OMException
protected  OMNode MTOMStAXSOAPModelBuilder.createOMElement()
           
 javax.activation.DataHandler MTOMStAXSOAPModelBuilder.getDataHandler(java.lang.String blobContentID)
           
 

Uses of OMException in org.apache.axiom.soap
 

Subclasses of OMException in org.apache.axiom.soap
 class SOAPProcessingException
           
 

Methods in org.apache.axiom.soap that throw OMException
 SOAPFault SOAPBody.addFault(java.lang.Exception e)
          Creates a new SOAPFault object and adds it to this SOAPBody object.
 void SOAPBody.addFault(SOAPFault soapFault)
           
 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.
 SOAPBody SOAPEnvelope.getBody()
          Returns the SOAPBody object associated with this SOAPEnvelope object.
 java.lang.Exception SOAPFault.getException()
          Returns Exception if there is one in the SOAP fault.
 SOAPHeader SOAPEnvelope.getHeader()
          Returns the SOAPHeader object for this SOAPEnvelope object.
 void SOAPFault.setException(java.lang.Exception e)
           
 

Uses of OMException in org.apache.axiom.soap.impl.builder
 

Methods in org.apache.axiom.soap.impl.builder that throw OMException
protected  OMNode StAXSOAPModelBuilder.createDTD()
          Method createDTD.
protected  OMNode StAXSOAPModelBuilder.createOMElement()
          Method createOMElement.
protected  OMNode StAXSOAPModelBuilder.createPI()
          Method createPI.
 SOAPEnvelope StAXSOAPModelBuilder.getSOAPEnvelope()
          Method getSOAPEnvelope.
 

Uses of OMException in org.apache.axiom.soap.impl.dom
 

Methods in org.apache.axiom.soap.impl.dom that throw OMException
abstract  SOAPFault SOAPBodyImpl.addFault(java.lang.Exception e)
          Creates a new SOAPFault object and adds it to this SOAPBody object.
 void SOAPBodyImpl.addFault(SOAPFault soapFault)
           
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.
 OMNode SOAPEnvelopeImpl.detach()
          Method detach
 SOAPBody SOAPEnvelopeImpl.getBody()
          Returns the SOAPBody object associated with this SOAPEnvelope object.
 java.lang.Exception SOAPFaultImpl.getException()
          If exception detailElement is not there we will return null
 SOAPHeader SOAPEnvelopeImpl.getHeader()
          Returns the SOAPHeader object for this SOAPEnvelope object.
 OMNode SOAPEnvelopeImpl.getNextOMSibling()
           
 

Uses of OMException in org.apache.axiom.soap.impl.dom.soap11
 

Methods in org.apache.axiom.soap.impl.dom.soap11 that throw OMException
 SOAPFault SOAP11BodyImpl.addFault(java.lang.Exception e)
           
 SOAPHeaderBlock SOAP11HeaderImpl.addHeaderBlock(java.lang.String localName, OMNamespace ns)
           
 

Uses of OMException in org.apache.axiom.soap.impl.dom.soap12
 

Methods in org.apache.axiom.soap.impl.dom.soap12 that throw OMException
 SOAPFault SOAP12BodyImpl.addFault(java.lang.Exception e)
           
 SOAPHeaderBlock SOAP12HeaderImpl.addHeaderBlock(java.lang.String localName, OMNamespace ns)
           
 

Uses of OMException in org.apache.axiom.soap.impl.llom
 

Methods in org.apache.axiom.soap.impl.llom that throw OMException
abstract  SOAPFault SOAPBodyImpl.addFault(java.lang.Exception e)
          Creates a new SOAPFault object and adds it to this SOAPBody object.
 void SOAPBodyImpl.addFault(SOAPFault soapFault)
           
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.
 OMNode SOAPEnvelopeImpl.detach()
          Method detach
 OMNode SOAPBodyImpl.detach()
           
 SOAPBody SOAPEnvelopeImpl.getBody()
          Returns the SOAPBody object associated with this SOAPEnvelope object.
 java.lang.Exception SOAPFaultImpl.getException()
          If exception detailElement is not there we will return null
 SOAPHeader SOAPEnvelopeImpl.getHeader()
          Returns the SOAPHeader object for this SOAPEnvelope object.
 

Uses of OMException in org.apache.axiom.soap.impl.llom.soap11
 

Methods in org.apache.axiom.soap.impl.llom.soap11 that throw OMException
 SOAPFault SOAP11BodyImpl.addFault(java.lang.Exception e)
           
 SOAPHeaderBlock SOAP11HeaderImpl.addHeaderBlock(java.lang.String localName, OMNamespace ns)
           
 

Uses of OMException in org.apache.axiom.soap.impl.llom.soap12
 

Methods in org.apache.axiom.soap.impl.llom.soap12 that throw OMException
 SOAPFault SOAP12BodyImpl.addFault(java.lang.Exception e)
           
 SOAPHeaderBlock SOAP12HeaderImpl.addHeaderBlock(java.lang.String localName, OMNamespace ns)