Package org.gatein.cdi.wrappers

Examples of org.gatein.cdi.wrappers.ServletInputStreamWrapper


    public ServletInputStream getInputStream() throws IOException {
        if (null != servletRequest) {
            return servletRequest.getInputStream();
        }
        if (request instanceof ClientDataRequest) {
            return new ServletInputStreamWrapper((ClientDataRequest) request);
        }
        return null;
    }
View Full Code Here

TOP

Related Classes of org.gatein.cdi.wrappers.ServletInputStreamWrapper

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.