com.feingto.cloud.plugin.IPluginAfter Maven / Gradle / Ivy
package com.feingto.cloud.plugin;
import java.lang.reflect.Method;
/**
* 后置通知接口 @PluginAfterAdvice
*
* @author longfei
*/
public interface IPluginAfter {
/**
* 拦截方法 - after
*
* @param returnValue Object
* @param method Method
* @param params Object[]
* @param obj Object
*/
void afterReturning(Object returnValue, Method method, Object[] params, Object obj);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy