Uses of Interface
jakarta.portlet.HeaderResponse
-
Packages that use HeaderResponse 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 HeaderResponse in jakarta.portlet
Methods in jakarta.portlet with parameters of type HeaderResponse 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 HeaderResponse in jakarta.portlet.filter
Classes in jakarta.portlet.filter that implement HeaderResponse Modifier and Type Class Description classHeaderResponseWrapperTheHeaderResponseWrapperprovides a convenient implementation of theHeaderResponseinterface that can be subclassed by developers.Methods in jakarta.portlet.filter that return HeaderResponse Modifier and Type Method Description HeaderResponseHeaderResponseWrapper. getResponse()Return the wrapped response object.Methods in jakarta.portlet.filter with parameters of type HeaderResponse 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.voidHeaderResponseWrapper. setResponse(HeaderResponse response)Sets the response object being wrapped.Constructors in jakarta.portlet.filter with parameters of type HeaderResponse Constructor Description HeaderResponseWrapper(HeaderResponse response)
-