Uses of Interface
javax.portlet.RenderRequest
-
Packages that use RenderRequest Package Description javax.portlet The javax.portlet package defines the API for Java Portlet Specification V2.0.javax.portlet.filter The javax.portlet.filter package defines the filter APIs for the Java Portlet Specification. -
-
Uses of RenderRequest in javax.portlet
Methods in javax.portlet with parameters of type RenderRequest Modifier and Type Method Description protected voidGenericPortlet. doDispatch(RenderRequest request, RenderResponse response)The default implementation of this method routes the render request to: method annotated with@RenderMode and the name of the portlet mode a set of helper methods depending on the current portlet mode the portlet is currently in.protected voidGenericPortlet. doEdit(RenderRequest request, RenderResponse response)Helper method to serve up theeditmode.protected voidGenericPortlet. doHeaders(RenderRequest request, RenderResponse response)Used by the render method to set the response properties and headers.protected voidGenericPortlet. doHelp(RenderRequest request, RenderResponse response)Helper method to serve up thehelpmode.protected voidGenericPortlet. doView(RenderRequest request, RenderResponse response)Helper method to serve up the mandatoryviewmode.protected java.util.Collection<PortletMode>GenericPortlet. getNextPossiblePortletModes(RenderRequest request)Used by the render method to set the next possible portlet modes.protected java.lang.StringGenericPortlet. getTitle(RenderRequest request)Used by the render method to get the title.voidPortletRequestDispatcher. include(RenderRequest request, RenderResponse response)Includes the content of a resource (servlet, JSP page, HTML file) in the response.voidGenericPortlet. render(RenderRequest request, RenderResponse response)The default implementation of this method sets the headers using thedoHeadersmethod, sets the title using thegetTitlemethod and invokes thedoDispatchmethod.voidPortlet. render(RenderRequest request, RenderResponse response)Called by the portlet container to allow the portlet to generate the content of the response based on its current state. -
Uses of RenderRequest in javax.portlet.filter
Classes in javax.portlet.filter that implement RenderRequest Modifier and Type Class Description classRenderRequestWrapperTheRenderRequestWrapperprovides a convenient implementation of theRenderRequestinterface that can be subclassed by developers wishing to adapt the request.Methods in javax.portlet.filter that return RenderRequest Modifier and Type Method Description RenderRequestRenderRequestWrapper. getRequest()Return the wrapped request object.Methods in javax.portlet.filter with parameters of type RenderRequest Modifier and Type Method Description voidFilterChain. doFilter(RenderRequest request, RenderResponse response)Causes the next filter in the chain to be invoked, or if the calling filter is the last filter in the chain, causes the portlet at the end of the chain to be invoked.voidRenderFilter. doFilter(RenderRequest request, RenderResponse response, FilterChain chain)ThedoFiltermethod of the Filter is called by the portlet container each time a render request/response pair is passed through the chain due to a client request for a portlet method at the end of the chain.voidRenderRequestWrapper. setRequest(RenderRequest request)Sets the request object being wrapped.Constructors in javax.portlet.filter with parameters of type RenderRequest Constructor Description RenderRequestWrapper(RenderRequest request)Creates anRenderRequestadaptor wrapping the given request object.
-