Uses of Interface
javax.portlet.ResourceResponse
-
Packages that use ResourceResponse 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 ResourceResponse in javax.portlet
Methods in javax.portlet with parameters of type ResourceResponse Modifier and Type Method Description voidGenericPortlet. serveResource(ResourceRequest request, ResourceResponse response)Default resource serving.voidResourceServingPortlet. serveResource(ResourceRequest request, ResourceResponse response)Called by the portlet container to allow the portlet to generate the resource content based on its current state. -
Uses of ResourceResponse in javax.portlet.filter
Classes in javax.portlet.filter that implement ResourceResponse Modifier and Type Class Description classResourceResponseWrapperTheResourceResponseWrapperprovides a convenient implementation of theResourceResponseinterface that can be subclassed by developers wishing to adapt the response.Methods in javax.portlet.filter that return ResourceResponse Modifier and Type Method Description ResourceResponseResourceResponseWrapper. getResponse()Return the wrapped response object.Methods in javax.portlet.filter with parameters of type ResourceResponse Modifier and Type Method Description voidFilterChain. doFilter(ResourceRequest request, ResourceResponse 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.voidResourceFilter. doFilter(ResourceRequest request, ResourceResponse response, FilterChain chain)ThedoFiltermethod of the Filter is called by the portlet container each time a resource request/response pair is passed through the chain due to a client request for a portlet method at the end of the chain.voidResourceResponseWrapper. setResponse(ResourceResponse response)Sets the response object being wrapped.Constructors in javax.portlet.filter with parameters of type ResourceResponse Constructor Description ResourceResponseWrapper(ResourceResponse response)Creates anResourceResponseadaptor wrapping the given response object.
-