com.fastchar.interfaces.IFastInterceptor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fastchar Show documentation
Show all versions of fastchar Show documentation
FastChar is Web+ORM Framework in Java.
package com.fastchar.interfaces;
import com.fastchar.core.FastAction;
/**
* 拦截器接口
*/
public interface IFastInterceptor {
/**
* 触发拦截器
* @param fastAction FastAction对象
* @throws Exception 异常
*/
void onInterceptor(FastAction fastAction) throws Exception;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy