Package org.apache.cxf.databinding.stax
Class StaxDataBinding.XMLStreamDataReader
java.lang.Object
org.apache.cxf.databinding.stax.StaxDataBinding.XMLStreamDataReader
- All Implemented Interfaces:
- DataReader<XMLStreamReader>
- Enclosing class:
- StaxDataBinding
public static class StaxDataBinding.XMLStreamDataReader
extends Object
implements DataReader<XMLStreamReader>
- 
Field SummaryFields inherited from interface org.apache.cxf.databinding.DataReaderENDPOINT, FAULT
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionread(QName name, XMLStreamReader input, Class<?> type) Read an object from the input.read(XMLStreamReader reader) Read an object from the input.read(MessagePartInfo part, XMLStreamReader input) Read an object from the input, applying additional conventions based on the WSDL message part.voidsetAttachments(Collection<Attachment> attachments) Attach a collection of attachments to a binding.voidsetProperty(String prop, Object value) Set an arbitrary property on the reader.voidSupply a schema to validate the input.
- 
Constructor Details- 
XMLStreamDataReaderpublic XMLStreamDataReader()
 
- 
- 
Method Details- 
readDescription copied from interface:DataReaderRead an object from the input, applying additional conventions based on the WSDL message part.- Specified by:
- readin interface- DataReader<XMLStreamReader>
- Parameters:
- part- The message part for this item. If null, this API is equivalent to- DataReader.read(Object).
- input- input source object.
- Returns:
- item read.
 
- 
readDescription copied from interface:DataReaderRead an object from the input. In the current version of CXF, not all binding support this API, and those that do ignore the element QName parameter.- Specified by:
- readin interface- DataReader<XMLStreamReader>
- Parameters:
- name- expected element. Generally ignored.
- input- input source object.
- type- the type of object required/requested. This is generally used when the caller wants to receive a raw source object and avoid any binding processing. For example, passing javax.xml.transform.Source. The bindings do not necessarily throw if they cannot provide an object of the requested type, and will apply their normal mapping processing, instead.
- Returns:
- item read.
 
- 
readDescription copied from interface:DataReaderRead an object from the input.- Specified by:
- readin interface- DataReader<XMLStreamReader>
- Parameters:
- reader- input source object.
- Returns:
- item read.
 
- 
setSchemaDescription copied from interface:DataReaderSupply a schema to validate the input. Bindings silently ignore this parameter if they do not support schema validation, or the particular form of validation implied by a particular form of Schema.- Specified by:
- setSchemain interface- DataReader<XMLStreamReader>
 
- 
setAttachmentsDescription copied from interface:DataReaderAttach a collection of attachments to a binding. This permits a binding to process the contents of one or more attachments as part of reading from this reader.- Specified by:
- setAttachmentsin interface- DataReader<XMLStreamReader>
- Parameters:
- attachments- attachments.
 
- 
setPropertyDescription copied from interface:DataReaderSet an arbitrary property on the reader.DataReader.FAULTandDataReader.ENDPOINTspecify two common properties: the Fault object being read and theEndpoint.- Specified by:
- setPropertyin interface- DataReader<XMLStreamReader>
- Parameters:
- prop- Name of the property.
- value- Value of the property.
 
 
-