/** * @Title: LoginInterceptor.java * @Description: TODO * @author: Calvinyang * @date: Oct 12, 2014 4:51:31 PM * Copyright: Copyright (c) 2013 * @version: 1.0 */ package edu.fudan.webclient.interceptor; import com.opensymphony.xwork2.ActionInvocation; import com.opensymphony.xwork2.interceptor.AbstractInterceptor; /** * @author: Calvinyang * @Description: web端登录拦截器 * @date: Oct 12, 2014 4:51:31 PM */ public class WebLoginInterceptor extends AbstractInterceptor { /** * */ private static final long serialVersionUID = -8935281044825584881L; @Override public String intercept(ActionInvocation paramActionInvocation) throws Exception { return null; } }