authorizationinterceptor.java
来自「《JSP网站开发典型模块与实例精讲》一书光盘源码」· Java 代码 · 共 26 行
JAVA
26 行
package org.appfuse.util.security;
/**
*
* <p>Title: </p>
* <p>Description: </p>
* <p>Copyright: Copyright (c) 2005</p>
* <p>Company: www.aspire-tech.com</p>
* @author not attributable
* @version 1.0
*/
import org.appfuse.util.exception.AppSystemException;
import org.appfuse.util.exception.AppBusinessException;
public interface AuthorizationInterceptor extends Interceptor {
/**
* 执行拦截功能
* @throws AppSystemException
* @throws AppBusinessException
*/
public void intercepte() throws AppSystemException, AppBusinessException;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?