Package org.apache.cxf.staxutils

Examples of org.apache.cxf.staxutils.StaxValidationManager


    public Object read(MessagePartInfo part, XMLStreamReader input) {
        Type type = databinding.getType(part);
        try {
            if (schemas != null) {
                StaxValidationManager mgr = bus.getExtension(StaxValidationManager.class);
                if (mgr != null) {
                    mgr.setupValidation(input, schemas);
                }
            }
            return reader.read(input, type);
        } catch (Exception e) {
            throw new Fault(e);
View Full Code Here

TOP

Related Classes of org.apache.cxf.staxutils.StaxValidationManager

Copyright © 2018 www.massapicom. 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.