1 /**
2 * Copyright 2003 IBM Corporation and Sun Microsystems, Inc.
3 * All rights reserved.
4 * Use is subject to license terms.
5 */
6
7 package javax.portlet;
8
9
10 /**
11 * The <CODE>RenderRequest</CODE> represents the request sent to the portlet
12 * to handle a render.
13 * It extends the PortletRequest interface to provide render request
14 * information to portlets.<br>
15 * The portlet container creates a <CODE>RenderRequest</CODE> object and
16 * passes it as argument to the portlet's <CODE>render</CODE> method.
17 *
18 * @see PortletRequest
19 * @see ActionRequest
20 */
21 public interface RenderRequest extends PortletRequest {
22
23
24 }