Uses of Interface
jakarta.portlet.HeaderRequest
-
Packages that use HeaderRequest Package Description jakarta.portlet The jakarta.portlet package defines the API for the Jakarta Portlet Specification V4.0.jakarta.portlet.filter The jakarta.portlet.filter package defines the filter APIs for the Jakarta Portlet Specification. -
-
Uses of HeaderRequest in jakarta.portlet
Methods in jakarta.portlet with parameters of type HeaderRequest Modifier and Type Method Description voidGenericPortlet. renderHeaders(HeaderRequest request, HeaderResponse response)V3 method implementing the headers stage within the render phase.voidHeaderPortlet. renderHeaders(HeaderRequest request, HeaderResponse response)Called by the portlet container to allow the portlet to set response headers and generate markup for overall response document head section. -
Uses of HeaderRequest in jakarta.portlet.filter
Classes in jakarta.portlet.filter that implement HeaderRequest Modifier and Type Class Description classHeaderRequestWrapperTheHeaderRequestWrapperprovides a convenient implementation of theHeaderRequestinterface that can be subclassed by developers.Methods in jakarta.portlet.filter that return HeaderRequest Modifier and Type Method Description HeaderRequestHeaderRequestWrapper. getRequest()Return the wrapped request object.Methods in jakarta.portlet.filter with parameters of type HeaderRequest Modifier and Type Method Description voidHeaderFilter. doFilter(HeaderRequest request, HeaderResponse response, HeaderFilterChain chain)ThedoFiltermethod of the Filter is called by the portlet container each time a header request/response pair is passed through the chain due to a client request for a portlet method at the end of the chain.voidHeaderFilterChain. doFilter(HeaderRequest request, HeaderResponse 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.voidHeaderRequestWrapper. setRequest(HeaderRequest request)Sets the request object being wrapped.Constructors in jakarta.portlet.filter with parameters of type HeaderRequest Constructor Description HeaderRequestWrapper(HeaderRequest request)Creates anHeaderRequestadaptor wrapping the given request object.
-