org.cattleframework.aop.constants.ScanMode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cattle-aop Show documentation
Show all versions of cattle-aop Show documentation
Cattle framework aop component pom
The newest version!
package org.cattleframework.aop.constants;
/**
* 扫描模式
*
* @author orange
*
*/
public enum ScanMode {
/**
* 只执行扫描到接口名或者类名上的注解后的处理
*/
FOR_CLASS_ANNOTATION_ONLY,
/**
* 只执行扫描到接口或者类方法上的注解后的处理
*/
FOR_METHOD_ANNOTATION_ONLY,
/**
* 上述两者都执行
*/
FOR_CLASS_OR_METHOD_ANNOTATION
}