com.nepxion.matrix.proxy.mode.ScanMode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of matrix-aop Show documentation
Show all versions of matrix-aop Show documentation
Nepxion Matrix is an AOP framework integrated with Spring AutoProxy, Spring Registrar and Spring Import Selector
package com.nepxion.matrix.proxy.mode;
/**
* Title: Nepxion Matrix
* Description: Nepxion Matrix AOP
* Copyright: Copyright (c) 2017-2050
* Company: Nepxion
* @author Haojun Ren
* @version 1.0
*/
public enum ScanMode {
// 只执行扫描到接口名或者类名上的注解后的处理
FOR_CLASS_ANNOTATION_ONLY,
// 只执行扫描到接口或者类方法上的注解后的处理
FOR_METHOD_ANNOTATION_ONLY,
// 上述两者都执行
FOR_CLASS_OR_METHOD_ANNOTATION
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy