Package jakarta.portlet
Interface RenderRequest
-
- All Superinterfaces:
PortletRequest,RenderState
- All Known Subinterfaces:
HeaderRequest
- All Known Implementing Classes:
HeaderRequestWrapper,RenderRequestWrapper
public interface RenderRequest extends PortletRequest
TheRenderRequestrepresents the request sent to the portlet to handle a render. It extends the PortletRequest interface to provide render request information to portlets.
The portlet container creates aRenderRequestobject and passes it as argument to the portlet'srendermethod.- See Also:
PortletRequest,ActionRequest
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface jakarta.portlet.PortletRequest
PortletRequest.P3PUserInfos
-
-
Field Summary
Fields Modifier and Type Field Description static StringETAGThis property is set by the container if the portlet container has a cached response for the given validation tag.-
Fields inherited from interface jakarta.portlet.PortletRequest
ACTION_PHASE, ACTION_SCOPE_ID, BASIC_AUTH, CCPP_PROFILE, CLIENT_CERT_AUTH, DIGEST_AUTH, EVENT_PHASE, FORM_AUTH, HEADER_PHASE, LIFECYCLE_PHASE, RENDER_HEADERS, RENDER_MARKUP, RENDER_PART, RENDER_PHASE, RESOURCE_PHASE, USER_INFO
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetETag()Returns the validation tag if the portlet container has a cached response for this validation tag, ornullif no cached response exists.-
Methods inherited from interface jakarta.portlet.PortletRequest
getAttribute, getAttributeNames, getAuthType, getContextPath, getCookies, getLocale, getLocales, getParameter, getParameterMap, getParameterNames, getParameterValues, getPortalContext, getPortletContext, getPortletSession, getPortletSession, getPreferences, getPrivateParameterMap, getProperties, getProperty, getPropertyNames, getPublicParameterMap, getRemoteUser, getRequestedSessionId, getResponseContentType, getResponseContentTypes, getScheme, getServerName, getServerPort, getUserAgent, getUserPrincipal, getWindowID, isPortletModeAllowed, isRequestedSessionIdValid, isSecure, isUserInRole, isWindowStateAllowed, removeAttribute, setAttribute
-
Methods inherited from interface jakarta.portlet.RenderState
getPortletMode, getRenderParameters, getWindowState
-
-
-
-
Field Detail
-
ETAG
static final String ETAG
This property is set by the container if the portlet container has a cached response for the given validation tag. The property can be retrieved using thegetPropertymethod.The value is
"portlet.ETag ".- Since:
- 2.0
- See Also:
- Constant Field Values
-
-
Method Detail
-
getETag
String getETag()
Returns the validation tag if the portlet container has a cached response for this validation tag, ornullif no cached response exists.This call returns the same value as
RenderRequest.getProperty(RenderRequest.ETAG).- Returns:
- the validation tag if the portlet container
has a cached response for this validation tag, or
nullif no cached response exists. - Since:
- 2.0
-
-