Uses of Interface
javax.portlet.PortletResponse

Packages that use PortletResponse
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. 
org.apache.pluto.core   
org.apache.pluto.driver.services.container   
org.apache.pluto.internal   
org.apache.pluto.internal.impl   
org.apache.pluto.spi   
org.apache.pluto.spi.optional   
org.apache.pluto.tags   
org.apache.pluto.testsuite   
org.apache.pluto.testsuite.test   
org.apache.pluto.wrappers   
 

Uses of PortletResponse in javax.portlet
 

Subinterfaces of PortletResponse in javax.portlet
 interface ActionResponse
          The ActionResponse interface represents the portlet response to an action request.
 interface EventResponse
          The EventResponse interface represents the portlet response to an event request.
 interface MimeResponse
          The MimeResponse defines the base interface to assist a portlet in returning MIME content.
 interface RenderResponse
          The RenderResponse defines an object to assist a portlet in sending a response to the portal.
 interface ResourceResponse
          The ResourceResponse defines an object to assist a portlet for rendering a resource.
 interface StateAwareResponse
          The StateAwareResponse represents a response that can modify state information or send events.
It extends the PortletResponse interface.
 

Methods in javax.portlet with parameters of type PortletResponse
 void PortletRequestDispatcher.forward(PortletRequest request, PortletResponse response)
          Forwards a portlet request from a portlet to another resource (servlet, JSP file, or HTML file) on the server.
 void PortletRequestDispatcher.include(PortletRequest request, PortletResponse response)
          Includes the content of a resource (servlet, JSP page, HTML file) in the response.
 

Uses of PortletResponse in javax.portlet.filter
 

Classes in javax.portlet.filter that implement PortletResponse
 class ActionResponseWrapper
          The ActionResponseWrapper provides a convenient implementation of the ActionResponse interface that can be subclassed by developers wishing to adapt the response.
 class EventResponseWrapper
          The EventResponseWrapper provides a convenient implementation of the EventResponse interface that can be subclassed by developers wishing to adapt the response.
 class PortletResponseWrapper
          The PortletResponseWrapper provides a convenient implementation of the PortletResponse interface and is extended by other response wrappers.
 class RenderResponseWrapper
          The RenderResponseWrapper provides a convenient implementation of the RenderResponse interface that can be subclassed by developers wishing to adapt the response.
 class ResourceResponseWrapper
          The ResourceResponseWrapper provides a convenient implementation of the ResourceResponse interface that can be subclassed by developers wishing to adapt the response.
 

Methods in javax.portlet.filter that return PortletResponse
 PortletResponse PortletResponseWrapper.getResponse()
          Return the wrapped response object.
 

Methods in javax.portlet.filter with parameters of type PortletResponse
 void PortletResponseWrapper.setResponse(PortletResponse response)
          Sets the response object being wrapped.
 

Constructors in javax.portlet.filter with parameters of type PortletResponse
PortletResponseWrapper(PortletResponse response)
          Creates an ActionResponse adaptor wrapping the given response object.
 

Uses of PortletResponse in org.apache.pluto.core
 

Methods in org.apache.pluto.core with parameters of type PortletResponse
 void DefaultPortletInvokerService.admin(PortletRequest request, PortletResponse response, InternalPortletWindow window)
           
protected  void DefaultPortletInvokerService.invoke(PortletRequest request, PortletResponse response, InternalPortletWindow portletWindow, Integer methodID)
          Perform the invocation.
 void DefaultPortletInvokerService.load(PortletRequest request, PortletResponse response, InternalPortletWindow window)
          Invoke the portlet with a load request.
 

Uses of PortletResponse in org.apache.pluto.driver.services.container
 

Methods in org.apache.pluto.driver.services.container with parameters of type PortletResponse
 void FilterManagerImpl.processFilter(PortletRequest req, PortletResponse res, ClassLoader loader, String portletName, PortletContext portletContext, String lifecycle)
          The processFilter initialize the rest you need and invoke doFilter from FilterChain.
 

Uses of PortletResponse in org.apache.pluto.internal
 

Subinterfaces of PortletResponse in org.apache.pluto.internal
 interface InternalActionResponse
          The internal action response interface extends the internal portlet response interface and provides some action-specific methods.
 interface InternalEventResponse
          The internal event response interface extends the internal portlet response interface and provides some event-specific methods.
 interface InternalPortletResponse
          The internal portlet response interface extends PortletResponse and adds some methods used by Pluto.
 interface InternalRenderResponse
          The internal render response interface extends the internal portlet response interface and provides some render-specific methods.
 interface InternalResourceResponse
          The internal resource response interface extends the internal portlet response interface and provides some resource-specific methods.
 

Uses of PortletResponse in org.apache.pluto.internal.impl
 

Classes in org.apache.pluto.internal.impl that implement PortletResponse
 class ActionResponseImpl
           
 class EventResponseImpl
          Implementation of JSR-286 EventResponse.
 class MimeResponseImpl
           
 class PortletResponseImpl
          Abstract javax.portlet.PortletResponse implementation.
 class RenderResponseImpl
          Implementation of the javax.portlet.RenderResponse interface.
 class ResourceResponseImpl
           
 class StateAwareResponseImpl
          Implementation of JSR-286 StateAwareResponse.
 

Methods in org.apache.pluto.internal.impl with parameters of type PortletResponse
 void PortletRequestDispatcherImpl.forward(PortletRequest request, PortletResponse response)
           
 void PortletRequestDispatcherImpl.include(PortletRequest request, PortletResponse response)
           
 

Uses of PortletResponse in org.apache.pluto.spi
 

Methods in org.apache.pluto.spi with parameters of type PortletResponse
 void FilterManager.processFilter(PortletRequest req, PortletResponse res, ClassLoader loader, String portletName, PortletContext portletContext, String lifecycle)
           
 

Uses of PortletResponse in org.apache.pluto.spi.optional
 

Methods in org.apache.pluto.spi.optional with parameters of type PortletResponse
 void PortletInvokerService.admin(PortletRequest req, PortletResponse res, InternalPortletWindow window)
           
 void AdministrativeRequestListener.administer(PortletRequest request, PortletResponse response)
           
 void PortletInvokerService.load(PortletRequest req, PortletResponse res, InternalPortletWindow window)
           
 

Uses of PortletResponse in org.apache.pluto.tags
 

Methods in org.apache.pluto.tags with parameters of type PortletResponse
protected  PortletURL ActionURLTag.createPortletUrl(PortletResponse portletResponse)
          Creates an action PortletURL
protected abstract  PortletURL PortletURLTag.createPortletUrl(PortletResponse portletResponse)
          Creates an actionURL or a renderURL
protected  PortletURL RenderURLTag.createPortletUrl(PortletResponse portletResponse)
          Creates a render PortletURL
 

Uses of PortletResponse in org.apache.pluto.testsuite
 

Methods in org.apache.pluto.testsuite with parameters of type PortletResponse
 TestResults PortletTest.doTest(PortletConfig config, PortletContext context, PortletRequest request, PortletResponse response)
          Runs the test.
 TestResults NoOpTest.doTest(PortletConfig config, PortletContext context, PortletRequest request, PortletResponse response)
           
 

Uses of PortletResponse in org.apache.pluto.testsuite.test
 

Methods in org.apache.pluto.testsuite.test with parameters of type PortletResponse
protected  TestResult DispatcherRenderParameterTest.checkAddedSameNameParameter(PortletContext context, PortletRequest request, PortletResponse response)
           
protected  TestResult DispatcherRequestTest.checkContextPath(PortletContext context, PortletRequest request, PortletResponse response)
           
protected  TestResult DispatcherRequestTest.checkGetContextPath(PortletContext context, PortletRequest request, PortletResponse response)
           
protected  TestResult RenderResponseNoContentTypeTest.checkGetPortletOutputStream(PortletResponse response)
           
protected  TestResult DispatcherRequestTest.checkGetQueryString(PortletContext context, PortletRequest request, PortletResponse response)
           
protected  TestResult DispatcherRequestTest.checkGetRequestURI(PortletContext context, PortletRequest request, PortletResponse response)
           
protected  TestResult DispatcherRequestTest.checkGetServletPath(PortletContext context, PortletRequest request, PortletResponse response)
           
protected  TestResult RenderResponseNoContentTypeTest.checkGetWriter(PortletResponse response)
           
protected  TestResult DispatcherRenderParameterTest.checkInvalidParameters(PortletContext context, PortletRequest request, PortletResponse response)
           
protected  TestResult DispatcherRenderParameterTest.checkParameters(PortletContext context, PortletRequest request, PortletResponse response)
           
protected  TestResult DispatcherRequestTest.checkPathInfo(PortletContext context, PortletRequest request, PortletResponse response)
           
protected  TestResult DispatcherRequestTest.checkQueryString(PortletContext context, PortletRequest request, PortletResponse response)
           
protected  TestResult DispatcherRequestTest.checkRequestURI(PortletContext context, PortletRequest request, PortletResponse response)
           
protected  TestResult DispatcherRenderParameterTest.checkSameNameParameter(PortletContext context, PortletRequest request, PortletResponse response)
           
protected  TestResult DispatcherRequestTest.checkServletPath(PortletContext context, PortletRequest request, PortletResponse response)
           
 TestResults AbstractReflectivePortletTest.doTest(PortletConfig config, PortletContext context, PortletRequest request, PortletResponse response)
          Invoke test methods using java reflection.
 

Uses of PortletResponse in org.apache.pluto.wrappers
 

Methods in org.apache.pluto.wrappers that return PortletResponse
 PortletResponse PortletResponseWrapper.getPortletResponse()
          Return the wrapped ServletResponse object.
 

Methods in org.apache.pluto.wrappers with parameters of type PortletResponse
 void PortletResponseWrapper.setResponse(PortletResponse response)
          Sets the response being wrapped.
 

Constructors in org.apache.pluto.wrappers with parameters of type PortletResponse
PortletResponseWrapper(PortletResponse portletResponse)
          Creates a ServletResponse adaptor wrapping the given response object.
 



Copyright © 2003-2011 Apache Software Foundation. All Rights Reserved.