Uses of Interface
org.apache.axis2.jaxws.message.Block
-
-
Uses of Block in org.apache.axis2.jaxws.message
Methods in org.apache.axis2.jaxws.message that return Block Modifier and Type Method Description BlockXMLPart. getBodyBlock(int index, Object context, BlockFactory blockFactory)getBodyBlock Get the body block at the specificed index.BlockXMLPart. getBodyBlock(Object context, BlockFactory blockFactory)getBodyBlock Get the single Body Block.Block[]XMLFault. getDetailBlocks()BlockXMLPart. getHeaderBlock(String namespace, String localPart, 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 Modifier and Type Method Description List<Block>XMLPart. getHeaderBlocks(String namespace, String localPart, Object context, BlockFactory blockFactory, 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 Modifier and Type Method Description voidXMLPart. appendHeaderBlock(String namespace, String localPart, Block block)appendHeaderBlock Append the block to the list of header blocks.voidXMLPart. setBodyBlock(int index, Block block)setBodyBlock Set the block at the specified index Once set, the Message owns the block.voidXMLPart. setBodyBlock(Block block)setBodyBlock Set this as block as the single block for the message.voidXMLPart. setHeaderBlock(String namespace, 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 Constructor Description 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 Modifier and Type Interface Description interfaceDataSourceBlockDataSourceBlock Block with a business object that is a javax.activation.DataSourceinterfaceJAXBBlockJAXBBlock Block represented by a JAXB objectinterfaceOMBlockOMBlock Block represented by an OMElement objectinterfaceSOAPEnvelopeBlockSOAPEnvelopeBlock Block represented by an SAAJ SOAPEnvelope.interfaceSourceBlockSourceBlock Block with a business object that is a javax.xml.transform.SourceinterfaceXMLStringBlockXMLStringBlock 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 Modifier and Type Class Description classDataSourceBlockImplSourceBlockclassJAXBBlockImplJAXBBlockImplclassOMBlockImplOMBlockImpl Block with a business object that is an OMElementclassSOAPEnvelopeBlockImplclassSourceBlockImplSourceBlockclassXMLStringBlockImplXMLStringBlockMethods in org.apache.axis2.jaxws.message.databinding.impl that return Block Modifier and Type Method Description BlockDataSourceBlockFactoryImpl. createFrom(Object businessObject, Object context, QName qName)BlockDataSourceBlockFactoryImpl. createFrom(OMElement omElement, Object context, QName qName)BlockJAXBBlockFactoryImpl. createFrom(Object businessObject, Object context, QName qName)BlockJAXBBlockFactoryImpl. createFrom(OMElement omElement, Object context, QName qName)BlockOMBlockFactoryImpl. createFrom(Object businessObject, Object context, QName qName)BlockOMBlockFactoryImpl. createFrom(OMElement omElement, Object context, QName qName)BlockSOAPEnvelopeBlockFactoryImpl. createFrom(Object businessObject, Object context, QName qName)BlockSOAPEnvelopeBlockFactoryImpl. createFrom(OMElement omElement, Object context, QName qName)BlockSourceBlockFactoryImpl. createFrom(Object businessObject, Object context, QName qName)BlockSourceBlockFactoryImpl. createFrom(OMElement omElement, Object context, QName qName)BlockXMLStringBlockFactoryImpl. createFrom(Object businessObject, Object context, QName qName)BlockXMLStringBlockFactoryImpl. createFrom(OMElement omElement, 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 Modifier and Type Method Description BlockBlockFactory. createFrom(Object businessObject, Object context, QName qName)Create from business objectBlockBlockFactory. createFrom(XMLStreamReader reader, Object context, QName qName)createBlock from XMLStreamReaderBlockBlockFactory. createFrom(OMElement omElement, Object context, QName qName)createBlock from XMLStreamReaderBlockBlockFactory. createFrom(Block other, 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.Methods in org.apache.axis2.jaxws.message.factory with parameters of type Block Modifier and Type Method Description BlockBlockFactory. createFrom(Block other, 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.MessageMessageFactory. createFrom(Block other, 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 Modifier and Type Class Description classBlockImpl<T,C>BlockImpl Abstract Base class for various Block Implementations.Methods in org.apache.axis2.jaxws.message.impl that return Block Modifier and Type Method Description BlockBlockFactoryImpl. createFrom(XMLStreamReader reader, Object context, QName qName)BlockBlockFactoryImpl. createFrom(Block other, Object context)BlockMessageImpl. getBodyBlock(int index, Object context, BlockFactory blockFactory)BlockMessageImpl. getBodyBlock(Object context, BlockFactory blockFactory)BlockXMLPartBase. getBodyBlock(int index, Object context, BlockFactory blockFactory)BlockXMLPartBase. getBodyBlock(Object context, BlockFactory blockFactory)BlockMessageImpl. getHeaderBlock(String namespace, String localPart, Object context, BlockFactory blockFactory)BlockXMLPartBase. getHeaderBlock(String namespace, String localPart, Object context, BlockFactory blockFactory)Methods in org.apache.axis2.jaxws.message.impl that return types with arguments of type Block Modifier and Type Method Description List<Block>MessageImpl. getHeaderBlocks(String namespace, String localPart, Object context, BlockFactory blockFactory, RolePlayer rolePlayer)List<Block>XMLPartBase. getHeaderBlocks(String namespace, String localPart, Object context, BlockFactory blockFactory, RolePlayer rolePlayer)Methods in org.apache.axis2.jaxws.message.impl with parameters of type Block Modifier and Type Method Description voidMessageImpl. appendHeaderBlock(String namespace, String localPart, Block block)voidXMLPartBase. appendHeaderBlock(String namespace, String localPart, Block block)BlockBlockFactoryImpl. createFrom(Block other, Object context)MessageMessageFactoryImpl. createFrom(Block block, Object context, Protocol protocol)voidMessageImpl. setBodyBlock(int index, Block block)voidMessageImpl. setBodyBlock(Block block)voidXMLPartBase. setBodyBlock(int index, Block block)voidXMLPartBase. setBodyBlock(Block block)voidMessageImpl. setHeaderBlock(String namespace, String localPart, Block block)voidXMLPartBase. setHeaderBlock(String namespace, String localPart, Block block)Constructor parameters in org.apache.axis2.jaxws.message.impl with type arguments of type Block Constructor Description XMLStreamReaderForXMLSpine(OMElement root, Protocol protocol, List<Block> headerBlocks, List<Block> bodyBlocks, 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 Modifier and Type Method Description static booleanXMLFaultUtils. containsFault(Block b)static XMLFaultXMLFaultUtils. createXMLFault(SOAPFault soapFault, Block[] detailBlocks)Create an XMLFault object from a SOAPFault and detail Blocksstatic XMLFaultXMLFaultUtils. createXMLFault(SOAPFault soapFault, Block[] detailBlocks)Create an XMLFault object from a SOAPFault and detail Blocksstatic XMLFaultXMLFaultUtils. createXMLFault(Block b, Protocol p)
-