Package org.apache.xml.security.stax.impl.util

Examples of org.apache.xml.security.stax.impl.util.UnsynchronizedByteArrayInputStream


    @Override
    public void doFinal() throws XMLStreamException {
        if (getTransformer() != null) {
            UnsynchronizedByteArrayOutputStream baos = (UnsynchronizedByteArrayOutputStream)getOutputStream();
            getTransformer().transform(new UnsynchronizedByteArrayInputStream(baos.toByteArray()));
            getTransformer().doFinal();
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.xml.security.stax.impl.util.UnsynchronizedByteArrayInputStream

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.