Uses of Interface
javax.portlet.ResourceRequest
-
Packages that use ResourceRequest 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 ResourceRequest in javax.portlet
Methods in javax.portlet with parameters of type ResourceRequest Modifier and Type Method Description void
GenericPortlet. serveResource(ResourceRequest request, ResourceResponse response)
Default resource serving.void
ResourceServingPortlet. 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 ResourceRequest in javax.portlet.filter
Classes in javax.portlet.filter that implement ResourceRequest Modifier and Type Class Description class
ResourceRequestWrapper
TheResourceRequestWrapper
provides a convenient implementation of theResourceRequest
interface that can be subclassed by developers wishing to adapt the request.Fields in javax.portlet.filter declared as ResourceRequest Modifier and Type Field Description (package private) ResourceRequest
ResourceRequestWrapper. request
Methods in javax.portlet.filter that return ResourceRequest Modifier and Type Method Description ResourceRequest
ResourceRequestWrapper. getRequest()
Return the wrapped request object.Methods in javax.portlet.filter with parameters of type ResourceRequest Modifier and Type Method Description void
FilterChain. 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.void
ResourceFilter. doFilter(ResourceRequest request, ResourceResponse response, FilterChain chain)
ThedoFilter
method 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.void
ResourceRequestWrapper. setRequest(ResourceRequest request)
Sets the request object being wrapped.Constructors in javax.portlet.filter with parameters of type ResourceRequest Constructor Description ResourceRequestWrapper(ResourceRequest request)
Creates anResourceRequest
adaptor wrapping the given request object.
-