Uses of Class
javax.portlet.PortletException

Packages that use PortletException
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 The root package of the Pluto Portlet Container. 
org.apache.pluto.core   
org.apache.pluto.driver.portlets   
org.apache.pluto.driver.services.container   
org.apache.pluto.internal.impl   
org.apache.pluto.spi.optional   
org.apache.pluto.testsuite   
org.apache.pluto.testsuite.test   
 

Uses of PortletException in javax.portlet
 

Subclasses of PortletException in javax.portlet
 class PortletModeException
          The PortletModeException is thrown when a portlet tries to use or set a portlet mode that is not supported by the current runtime environment or the portlet.
 class PortletSecurityException
          A portlet should throw a PortletSecurityException when a call fails because of security reasons.
Additionally it can be thrown by the portal/portlet-container.
 class ReadOnlyException
          The ReadOnlyException is thrown when a portlet tries to change the value for a read-only preference attribute.
 class UnavailableException
          The portlet should throw the UnavailableException when the portlet is either temporarily or permanently unavailable to handle requests.
 class ValidatorException
          The ValidatorException is thrown by the validate method of a PreferencesValidator when the validation of a preference failed.
 class WindowStateException
          The WindowStateException is thrown when a portlet tries to use a window state that is not supported by the current runtime environment or the portlet.
 

Methods in javax.portlet that throw PortletException
protected  void GenericPortlet.doDispatch(RenderRequest request, RenderResponse response)
          The default implementation of this method routes the render request to: method annotated with @RenderMode and the name of the portlet mode a set of helper methods depending on the current portlet mode the portlet is currently in.
protected  void GenericPortlet.doEdit(RenderRequest request, RenderResponse response)
          Helper method to serve up the edit mode.
protected  void GenericPortlet.doHelp(RenderRequest request, RenderResponse response)
          Helper method to serve up the help mode.
protected  void GenericPortlet.doView(RenderRequest request, RenderResponse response)
          Helper method to serve up the mandatory view mode.
 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.
 void PortletRequestDispatcher.include(RenderRequest request, RenderResponse response)
          Includes the content of a resource (servlet, JSP page, HTML file) in the response.
 void GenericPortlet.init()
          A convenience method which can be overridden so that there's no need to call super.init(config).
 void Portlet.init(PortletConfig config)
          Called by the portlet container to indicate to a portlet that the portlet is being placed into service.
 void GenericPortlet.init(PortletConfig config)
          Called by the portlet container to indicate to a portlet that the portlet is being placed into service.
 void Portlet.processAction(ActionRequest request, ActionResponse response)
          Called by the portlet container to allow the portlet to process an action request.
 void GenericPortlet.processAction(ActionRequest request, ActionResponse response)
          Called by the portlet container to allow the portlet to process an action request.
 void EventPortlet.processEvent(EventRequest request, EventResponse response)
          Called by the portlet container requesting the portlet to process a specific event.
 void GenericPortlet.processEvent(EventRequest request, EventResponse response)
          Default event processing.
 void Portlet.render(RenderRequest request, RenderResponse response)
          Called by the portlet container to allow the portlet to generate the content of the response based on its current state.
 void GenericPortlet.render(RenderRequest request, RenderResponse response)
          The default implementation of this method sets the headers using the doHeaders method, sets the title using the getTitle method and invokes the doDispatch method.
 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.
 void GenericPortlet.serveResource(ResourceRequest request, ResourceResponse response)
          Default resource serving.
 

Uses of PortletException in javax.portlet.filter
 

Methods in javax.portlet.filter that throw PortletException
 void FilterChain.doFilter(ActionRequest request, ActionResponse 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 ActionFilter.doFilter(ActionRequest request, ActionResponse response, FilterChain chain)
          The doFilter method of the Filter is called by the portlet container each time a action request/response pair is passed through the chain due to a client request for a portlet method at the end of the chain.
 void FilterChain.doFilter(EventRequest request, EventResponse 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 EventFilter.doFilter(EventRequest request, EventResponse response, FilterChain chain)
          The doFilter method of the Filter is called by the portlet container each time a event request/response pair is passed through the chain due to a client request for a portlet method at the end of the chain.
 void FilterChain.doFilter(RenderRequest request, RenderResponse 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 RenderFilter.doFilter(RenderRequest request, RenderResponse response, FilterChain chain)
          The doFilter method of the Filter is called by the portlet container each time a render request/response pair is passed through the chain due to a client request for a portlet method at the end of the chain.
 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)
          The doFilter 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 PortletFilter.init(FilterConfig filterConfig)
          Called by the portlet container to indicate to a filter that it is being placed into service.
 

Uses of PortletException in org.apache.pluto
 

Methods in org.apache.pluto that throw PortletException
 void PortletContainer.doAction(PortletWindow internalPortletWindow, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Indicates that a portlet action occured in the current request and calls the processAction method of this portlet.
 void PortletContainer.doAdmin(PortletWindow portletWindow, javax.servlet.http.HttpServletRequest servletRequest, javax.servlet.http.HttpServletResponse servletResponse)
          Indicates that the portal needs to perform administrative actions upon the portlet and/or portlet application.
 void PortletContainer.doLoad(PortletWindow internalPortletWindow, javax.servlet.http.HttpServletRequest servletRequest, javax.servlet.http.HttpServletResponse servletResponse)
          Indicates that the portlet must be initialized
 void PortletContainer.doRender(PortletWindow internalPortletWindow, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Calls the render method of the given portlet window.
 void PortletContainer.doServeResource(PortletWindow internalPortletWindow, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Indicates that a portlet resource Serving occured in the current request and calls the processServeResource method of this portlet.
 void EventContainer.fireEvent(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, PortletWindow window, Event event)
          Indicates that an event should be fired in the current request and calls the processEvent method of this portlet.
 

Uses of PortletException in org.apache.pluto.core
 

Methods in org.apache.pluto.core that throw PortletException
 void DefaultPortletInvokerService.action(ActionRequest request, ActionResponse response, InternalPortletWindow window)
          Invoke the portlet with an action request.
 void DefaultPortletInvokerService.admin(PortletRequest request, PortletResponse response, InternalPortletWindow window)
           
 void PortletContainerImpl.doAction(PortletWindow portletWindow, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Process action for the portlet associated with the given portlet window.
 void PortletContainerImpl.doAdmin(PortletWindow portletWindow, javax.servlet.http.HttpServletRequest servletRequest, javax.servlet.http.HttpServletResponse servletResponse)
           
 void PortletContainerImpl.doLoad(PortletWindow portletWindow, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Loads the portlet associated with the specified portlet window.
 void PortletContainerImpl.doRender(PortletWindow portletWindow, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Renders the portlet associated with the specified portlet window.
 void PortletContainerImpl.doServeResource(PortletWindow portletWindow, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Indicates that a portlet resource Serving occured in the current request and calls the processServeResource method of this portlet.
 void DefaultPortletInvokerService.event(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, InternalPortletWindow window)
          Invoke the portlet with a render request.
 void PortletContainerImpl.fireEvent(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, PortletWindow window, Event event)
          Fire Event for the portlet associated with the given portlet window and eventName
 void NullPortlet.init(PortletConfig arg0)
           
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.
 void NullPortlet.processAction(ActionRequest arg0, ActionResponse arg1)
           
 void NullPortlet.processEvent(EventRequest arg0, EventResponse arg1)
           
 void NullPortlet.render(RenderRequest arg0, RenderResponse arg1)
           
 void DefaultPortletInvokerService.render(RenderRequest request, RenderResponse response, InternalPortletWindow window)
          Invoke the portlet with a render request.
 void NullPortlet.serveResource(ResourceRequest arg0, ResourceResponse arg1)
           
 void DefaultPortletInvokerService.serveResource(ResourceRequest request, ResourceResponse response, InternalPortletWindow window)
          Invoke the portlet with a resource request.
 

Uses of PortletException in org.apache.pluto.driver.portlets
 

Methods in org.apache.pluto.driver.portlets that throw PortletException
protected  void GenericPlutoPortlet.doEdit(RenderRequest request, RenderResponse response)
           
protected  void AboutPortlet.doEdit(RenderRequest request, RenderResponse response)
           
protected  void GenericPlutoPortlet.doHelp(RenderRequest request, RenderResponse response)
           
protected  void AboutPortlet.doHelp(RenderRequest request, RenderResponse response)
           
 void GenericPlutoPortlet.doView(RenderRequest request, RenderResponse response)
           
 void PageAdminPortlet.doView(RenderRequest request, RenderResponse response)
           
 void AboutPortlet.doView(RenderRequest request, RenderResponse response)
           
 

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

Methods in org.apache.pluto.driver.services.container that throw PortletException
 void FilterChainImpl.doFilter(ActionRequest request, ActionResponse response)
           
 void FilterChainImpl.doFilter(EventRequest request, EventResponse response)
           
 void FilterChainImpl.doFilter(RenderRequest request, RenderResponse response)
           
 void FilterChainImpl.doFilter(ResourceRequest request, ResourceResponse response)
           
 

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

Methods in org.apache.pluto.internal.impl that throw PortletException
 void PortletRequestDispatcherImpl.forward(PortletRequest request, PortletResponse response)
           
 void PortletRequestDispatcherImpl.include(PortletRequest request, PortletResponse response)
           
 void PortletRequestDispatcherImpl.include(RenderRequest request, RenderResponse response)
           
 

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

Methods in org.apache.pluto.spi.optional that throw PortletException
 void PortletInvokerService.action(ActionRequest req, ActionResponse res, InternalPortletWindow window)
           
 void PortletInvokerService.admin(PortletRequest req, PortletResponse res, InternalPortletWindow window)
           
 void PortletInvokerService.event(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, InternalPortletWindow window)
           
 void PortletInvokerService.load(PortletRequest req, PortletResponse res, InternalPortletWindow window)
           
 void PortletInvokerService.render(RenderRequest req, RenderResponse res, InternalPortletWindow window)
           
 void PortletInvokerService.serveResource(ResourceRequest req, ResourceResponse res, InternalPortletWindow window)
           
 

Uses of PortletException in org.apache.pluto.testsuite
 

Methods in org.apache.pluto.testsuite that throw PortletException
protected  void TestPortlet.doEdit(RenderRequest request, RenderResponse response)
          Serves up the edit mode.
protected  void TestPortlet.doHelp(RenderRequest request, RenderResponse response)
          Serves up the help mode.
 void TestPortlet.doView(RenderRequest request, RenderResponse response)
          Serves up the view mode.
 void TestPortlet.init()
          Initialize the test portlet.
 void TestPortlet.processAction(ActionRequest request, ActionResponse response)
           
 void TestPortlet.processEvent(EventRequest request, EventResponse response)
           
 void TestPortlet.serveResource(ResourceRequest arg0, ResourceResponse arg1)
           
 

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

Methods in org.apache.pluto.testsuite.test that throw PortletException
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 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 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)
           
 



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