Uses of Interface
org.apache.axis2.jaxws.message.Block

Packages that use Block
org.apache.axis2.jaxws.message   
org.apache.axis2.jaxws.message.databinding   
org.apache.axis2.jaxws.message.databinding.impl   
org.apache.axis2.jaxws.message.factory   
org.apache.axis2.jaxws.message.impl   
org.apache.axis2.jaxws.message.util   
 

Uses of Block in org.apache.axis2.jaxws.message
 

Methods in org.apache.axis2.jaxws.message that return Block
 Block XMLPart.getBodyBlock(int index, java.lang.Object context, BlockFactory blockFactory)
          getBodyBlock Get the body block at the specificed index.
 Block XMLPart.getBodyBlock(java.lang.Object context, BlockFactory blockFactory)
          getBodyBlock Get the single Body Block.
 Block[] XMLFault.getDetailBlocks()
           
 Block XMLPart.getHeaderBlock(java.lang.String namespace, java.lang.String localPart, java.lang.Object context, BlockFactory blockFactory)
          getHeaderBlock Get the firstheader block with the specified name.
 

Methods in org.apache.axis2.jaxws.message that return types with arguments of type Block
 java.util.List<Block> XMLPart.getHeaderBlocks(java.lang.String namespace, java.lang.String localPart, java.lang.Object context, BlockFactory blockFactory, org.apache.axiom.soap.RolePlayer rolePlayer)
          getHeaderBlock Get the header blocks with the specified name The BlockFactory and object context are passed in to help create the proper kind of block.
 

Methods in org.apache.axis2.jaxws.message with parameters of type Block
 void XMLPart.appendHeaderBlock(java.lang.String namespace, java.lang.String localPart, Block block)
          appendHeaderBlock Append the block to the list of header blocks.
 void XMLPart.setBodyBlock(Block block)
          setBodyBlock Set this as block as the single block for the message.
 void XMLPart.setBodyBlock(int index, Block block)
          setBodyBlock Set the block at the specified index Once set, the Message owns the block.
 void XMLPart.setHeaderBlock(java.lang.String namespace, java.lang.String localPart, Block block)
          setHeaderBlock replaces the first existing header block with this new block.
 

Constructors in org.apache.axis2.jaxws.message with parameters of type Block
XMLFault(XMLFaultCode code, XMLFaultReason reason, Block[] detailBlocks)
          Construct Application XMLFault with minimum required information
 

Uses of Block in org.apache.axis2.jaxws.message.databinding
 

Subinterfaces of Block in org.apache.axis2.jaxws.message.databinding
 interface JAXBBlock
          JAXBBlock Block represented by a JAXB object
 interface OMBlock
          OMBlock Block represented by an OMElement object
 interface SOAPEnvelopeBlock
          SOAPEnvelopeBlock Block represented by an SAAJ SOAPEnvelope.
 interface SourceBlock
          SourceBlock Block with a business object that is a javax.xml.transform.Source
 interface XMLStringBlock
          XMLStringBlock Block with a business object that is a String containing xml text
 

Uses of Block in org.apache.axis2.jaxws.message.databinding.impl
 

Classes in org.apache.axis2.jaxws.message.databinding.impl that implement Block
 class JAXBBlockImpl
          JAXBBlockImpl

A Block containing a JAXB business object (either a JAXBElement or an object with @XmlRootElement).

 class OMBlockImpl
          OMBlockImpl Block with a business object that is an OMElement
 class SOAPEnvelopeBlockImpl
           
 class SourceBlockImpl
          SourceBlock

Block containing a business object that is a javax.xml.transform.Source.

 class XMLStringBlockImpl
          XMLStringBlock

Block containing a business object that is a String of xml text

 

Methods in org.apache.axis2.jaxws.message.databinding.impl that return Block
 Block OMBlockFactoryImpl.createFrom(java.lang.Object businessObject, java.lang.Object context, QName qName)
           
 Block SourceBlockFactoryImpl.createFrom(java.lang.Object businessObject, java.lang.Object context, QName qName)
           
 Block JAXBBlockFactoryImpl.createFrom(java.lang.Object businessObject, java.lang.Object context, QName qName)
           
 Block SOAPEnvelopeBlockFactoryImpl.createFrom(java.lang.Object businessObject, java.lang.Object context, QName qName)
           
 Block XMLStringBlockFactoryImpl.createFrom(java.lang.Object businessObject, java.lang.Object context, QName qName)
           
 Block OMBlockFactoryImpl.createFrom(org.apache.axiom.om.OMElement omElement, java.lang.Object context, QName qName)
           
 Block SourceBlockFactoryImpl.createFrom(org.apache.axiom.om.OMElement omElement, java.lang.Object context, QName qName)
           
 Block JAXBBlockFactoryImpl.createFrom(org.apache.axiom.om.OMElement omElement, java.lang.Object context, QName qName)
           
 Block SOAPEnvelopeBlockFactoryImpl.createFrom(org.apache.axiom.om.OMElement omElement, java.lang.Object context, QName qName)
           
 Block XMLStringBlockFactoryImpl.createFrom(org.apache.axiom.om.OMElement omElement, java.lang.Object context, QName qName)
           
 

Uses of Block in org.apache.axis2.jaxws.message.factory
 

Methods in org.apache.axis2.jaxws.message.factory that return Block
 Block BlockFactory.createFrom(Block other, java.lang.Object context)
          createBlock from another Block If the other Block was created with the same factory and has the same context, the other Block is returned.
 Block BlockFactory.createFrom(java.lang.Object businessObject, java.lang.Object context, QName qName)
          Create from business object
 Block BlockFactory.createFrom(org.apache.axiom.om.OMElement omElement, java.lang.Object context, QName qName)
          createBlock from XMLStreamReader
 Block BlockFactory.createFrom(javax.xml.stream.XMLStreamReader reader, java.lang.Object context, QName qName)
          createBlock from XMLStreamReader
 

Methods in org.apache.axis2.jaxws.message.factory with parameters of type Block
 Block BlockFactory.createFrom(Block other, java.lang.Object context)
          createBlock from another Block If the other Block was created with the same factory and has the same context, the other Block is returned.
 Message MessageFactory.createFrom(Block other, java.lang.Object context, Protocol protocol)
          create Message from a Block
 

Uses of Block in org.apache.axis2.jaxws.message.impl
 

Classes in org.apache.axis2.jaxws.message.impl that implement Block
 class BlockImpl
          BlockImpl Abstract Base class for various Block Implementations.
 

Methods in org.apache.axis2.jaxws.message.impl that return Block
 Block BlockFactoryImpl.createFrom(Block other, java.lang.Object context)
           
 Block BlockFactoryImpl.createFrom(javax.xml.stream.XMLStreamReader reader, java.lang.Object context, QName qName)
           
 Block MessageImpl.getBodyBlock(int index, java.lang.Object context, BlockFactory blockFactory)
           
 Block XMLPartBase.getBodyBlock(int index, java.lang.Object context, BlockFactory blockFactory)
           
 Block MessageImpl.getBodyBlock(java.lang.Object context, BlockFactory blockFactory)
           
 Block XMLPartBase.getBodyBlock(java.lang.Object context, BlockFactory blockFactory)
           
 Block MessageImpl.getHeaderBlock(java.lang.String namespace, java.lang.String localPart, java.lang.Object context, BlockFactory blockFactory)
           
 Block XMLPartBase.getHeaderBlock(java.lang.String namespace, java.lang.String localPart, java.lang.Object context, BlockFactory blockFactory)
           
 

Methods in org.apache.axis2.jaxws.message.impl that return types with arguments of type Block
 java.util.List<Block> MessageImpl.getHeaderBlocks(java.lang.String namespace, java.lang.String localPart, java.lang.Object context, BlockFactory blockFactory, org.apache.axiom.soap.RolePlayer rolePlayer)
           
 java.util.List<Block> XMLPartBase.getHeaderBlocks(java.lang.String namespace, java.lang.String localPart, java.lang.Object context, BlockFactory blockFactory, org.apache.axiom.soap.RolePlayer rolePlayer)
           
 

Methods in org.apache.axis2.jaxws.message.impl with parameters of type Block
 void MessageImpl.appendHeaderBlock(java.lang.String namespace, java.lang.String localPart, Block block)
           
 void XMLPartBase.appendHeaderBlock(java.lang.String namespace, java.lang.String localPart, Block block)
           
 Block BlockFactoryImpl.createFrom(Block other, java.lang.Object context)
           
 Message MessageFactoryImpl.createFrom(Block block, java.lang.Object context, Protocol protocol)
           
 void MessageImpl.setBodyBlock(Block block)
           
 void XMLPartBase.setBodyBlock(Block block)
           
 void MessageImpl.setBodyBlock(int index, Block block)
           
 void XMLPartBase.setBodyBlock(int index, Block block)
           
 void MessageImpl.setHeaderBlock(java.lang.String namespace, java.lang.String localPart, Block block)
           
 void XMLPartBase.setHeaderBlock(java.lang.String namespace, java.lang.String localPart, Block block)
           
 

Constructor parameters in org.apache.axis2.jaxws.message.impl with type arguments of type Block
XMLStreamReaderForXMLSpine(org.apache.axiom.om.OMElement root, Protocol protocol, java.util.List<Block> headerBlocks, java.util.List<Block> bodyBlocks, java.util.List<Block> detailBlocks, boolean consume)
           
XMLStreamReaderForXMLSpine(org.apache.axiom.om.OMElement root, Protocol protocol, java.util.List<Block> headerBlocks, java.util.List<Block> bodyBlocks, java.util.List<Block> detailBlocks, boolean consume)
           
XMLStreamReaderForXMLSpine(org.apache.axiom.om.OMElement root, Protocol protocol, java.util.List<Block> headerBlocks, java.util.List<Block> bodyBlocks, java.util.List<Block> detailBlocks, boolean consume)
           
 

Uses of Block in org.apache.axis2.jaxws.message.util
 

Methods in org.apache.axis2.jaxws.message.util with parameters of type Block
static XMLFault XMLFaultUtils.createXMLFault(org.apache.axiom.soap.SOAPFault soapFault, Block[] detailBlocks)
          Create an XMLFault object from a SOAPFault and detail Blocks
static XMLFault XMLFaultUtils.createXMLFault(SOAPFault soapFault, Block[] detailBlocks)
          Create an XMLFault object from a SOAPFault and detail Blocks
 



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