01: /**
02: * Copyright 2003 IBM Corporation and Sun Microsystems, Inc.
03: * All rights reserved.
04: * Use is subject to license terms.
05: */package javax.portlet;
06:
07: /**
08: * The <CODE>RenderRequest</CODE> represents the request sent to the portlet
09: * to handle a render.
10: * It extends the PortletRequest interface to provide render request
11: * information to portlets.<br>
12: * The portlet container creates a <CODE>RenderRequest</CODE> object and
13: * passes it as argument to the portlet's <CODE>render</CODE> method.
14: *
15: * @see PortletRequest
16: * @see ActionRequest
17: */
18: public interface RenderRequest extends PortletRequest {
19:
20: }
|