Package org.apache.cxf.aegis.databinding

Examples of org.apache.cxf.aegis.databinding.AegisDatabinding.createReader()


        AegisDatabinding aegisDatabinding = new AegisDatabinding();
        Set<String> types = new HashSet<String>();
        types.add("org.apache.cxf.aegis.inheritance.Employee");
        aegisDatabinding.setOverrideTypes(types);
        DataReader<XMLStreamReader> dataReader =
            aegisDatabinding.createReader(XMLStreamReader.class);
        InputStream employeeBytes =
            testUtilities.getResourceAsStream("/org/apache/cxf/aegis/override/employee.xml");
       
        XMLInputFactory readerFactory = XMLInputFactory.newInstance();
        XMLStreamReader reader = readerFactory.createXMLStreamReader(employeeBytes);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.