Class XMLStreamDataReader

    • Constructor Detail

      • XMLStreamDataReader

        public XMLStreamDataReader()
      • XMLStreamDataReader

        public XMLStreamDataReader​(Class<?> cls)
    • Method Detail

      • read

        public Object read​(QName name,
                           XMLStreamReader input,
                           Class<?> type)
        Description copied from interface: DataReader
        Read 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:
        read in 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.
      • setSchema

        public void setSchema​(Schema s)
        Description copied from interface: DataReader
        Supply 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:
        setSchema in interface DataReader<XMLStreamReader>
      • setAttachments

        public void setAttachments​(Collection<Attachment> attachments)
        Description copied from interface: DataReader
        Attach 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:
        setAttachments in interface DataReader<XMLStreamReader>
        Parameters:
        attachments - attachments.