All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jquicker.aop.Advice Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
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