com.github.datalking.aop.Pointcut Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of play-ioc Show documentation
Show all versions of play-ioc Show documentation
simple ioc container with aop support.
The newest version!
package com.github.datalking.aop;
/**
* @author yaoo on 4/18/18
*/
public interface Pointcut {
/**
* 类过滤器,匹配需要拦截的类
*/
ClassFilter getClassFilter();
/**
* 方法匹配器,匹配需要拦截的方法
*/
MethodMatcher getMethodMatcher();
Pointcut TRUE = TruePointcut.INSTANCE;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy