Package org.apache.wink.server.internal.providers.entity.html

Examples of org.apache.wink.server.internal.providers.entity.html.OutputStreamHttpServletResponseWrapper


        Assert.notNull(response, "Response must not be null");
        if (!(response instanceof OutputStreamHttpServletResponseWrapper))
            throw new IllegalArgumentException(
                                               "HtmlMockRequestDispatcher requires OutputStreamHttpServletResponseWrapper");

        OutputStreamHttpServletResponseWrapper res =
            (OutputStreamHttpServletResponseWrapper)response;

        try {
            res.getWriter().write(url);
        } catch (IOException e) {
            e.printStackTrace();
            Assert.isTrue(false);
        }
View Full Code Here

TOP

Related Classes of org.apache.wink.server.internal.providers.entity.html.OutputStreamHttpServletResponseWrapper

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.