panda.ioc.aop.config.AopConfigration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of panda-glue Show documentation
Show all versions of panda-glue Show documentation
Panda Glue is a ASM/AOP module of the Panda Framework.
The newest version!
package panda.ioc.aop.config;
import java.util.List;
import panda.ioc.Ioc;
public interface AopConfigration {
/**
* The IocBean Name
*/
String IOCNAME = "$aop";
/**
* Get intercept list for class methods
*
* @param ioc the ioc
* @param clazz the class to intercept
* @return InterceptorPair List
*/
List getInterceptorPairList(Ioc ioc, Class> clazz);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy