com.jquicker.aop.Advice Maven / Gradle / Ivy
package com.jquicker.aop;
import java.lang.reflect.InvocationHandler;
/**
* @author OL
*/
public interface Advice extends InvocationHandler {
/**
* 在Advice的实现类中需要实现public Object invoke(Object proxy, Method method, Object[] args) throws Throwable;
*
*/
/**
* 获取被代理的对象
* @return
* @author OL
*/
public Object getTarget();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy