Package org.springmodules.xt.ajax.util.internal

Examples of org.springmodules.xt.ajax.util.internal.InternalHttpServletResponse


        this.path = path;
    }
   
    public String render() {
        StringWriter writer = new StringWriter();
        InternalHttpServletResponse response = new InternalHttpServletResponse(writer);
        response.setCharacterEncoding(this.characterEncoding);
        response.setContentType(this.contentType);
        response.setLocale(this.locale);
        try {
            request.getRequestDispatcher(this.path).include(this.request, response);
        }
        catch (Exception e) {
            throw new RenderingException("Error while rendering a component of type: " + this.getClass().getName(), e);
View Full Code Here

TOP

Related Classes of org.springmodules.xt.ajax.util.internal.InternalHttpServletResponse

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.