Example usage for com.liferay.portal.struts StrutsUtil forward

List of usage examples for com.liferay.portal.struts StrutsUtil forward

Introduction

In this page you can find the example usage for com.liferay.portal.struts StrutsUtil forward.

Prototype

public static void forward(String uri, ServletContext servletContext, HttpServletRequest httpServletRequest,
            HttpServletResponse httpServletResponse) throws ServletException 

Source Link

Usage

From source file:com.liferay.samplestrutsliferay.struts.SampleRequestProcessor.java

License:Open Source License

@Override
protected void doForward(String uri, HttpServletRequest request, HttpServletResponse response)
        throws IOException, ServletException {

    StrutsUtil.forward(uri, getServletContext(), request, response);
}