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

All Known Implementing Classes:
UserInfoUrlParameterizingPreInterceptor

public interface PreInterceptor

A pre-interceptor is run after the portlet has a full Request object created to allow user code to take actions on that object before it is used to make the HTTP request to the remote application


Method Summary
 void intercept(javax.portlet.ActionRequest request, javax.portlet.ActionResponse response, Request httpReq)
          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, Request httpResp)
          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, Request httpResp)
          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,
               Request httpResp)
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,
               Request httpReq)
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,
               Request httpResp)
This intercept method is called for requests that happen during the render of a servlet.



Copyright © 2012 Jasig. All Rights Reserved.