edu.wisc.my.webproxy.beans.interceptors
Interface PostInterceptor


public interface PostInterceptor

A post-interceptor is run after the request has been made and before the portlet has access to the Response object. This allows user code to inspect any state changes from the remote applicationa nd possibly modify the response


Method Summary
 void intercept(javax.portlet.ActionRequest request, javax.portlet.ActionResponse response, Response httpResponse)
          This intercept method is called for requests that happen during the action of a portlet.
 void intercept(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, Response httpResponse)
          This intercept method is called for requests that happen during the render of a servlet.
 void intercept(javax.portlet.RenderRequest request, javax.portlet.RenderResponse response, Response httpResponse)
          This intercept method is called for requests that happen during the render of a portlet.
 

Method Detail

intercept

void intercept(javax.portlet.RenderRequest request,
               javax.portlet.RenderResponse response,
               Response httpResponse)
This intercept method is called for requests that happen during the render of a portlet.


intercept

void intercept(javax.portlet.ActionRequest request,
               javax.portlet.ActionResponse response,
               Response httpResponse)
This intercept method is called for requests that happen during the action of a portlet.


intercept

void intercept(javax.servlet.http.HttpServletRequest request,
               javax.servlet.http.HttpServletResponse response,
               Response httpResponse)
This intercept method is called for requests that happen during the render of a servlet.



Copyright © 2010 Jasig. All Rights Reserved.