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

com.es.plus.adapter.interceptor.InterceptorElement Maven / Gradle / Ivy

There is a newer version: 0.3.941
Show newest version
package com.es.plus.adapter.interceptor;

import java.lang.annotation.*;

@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface InterceptorElement {
    /**
     * 拦截的类名 有多版本控制
     */
    Class type();
    /**
     * 拦截的索引名 不填默认所有
     */
    String[] index() default {};

    /**
     * 拦截的方法名 不填默认所有
     */
    String[] methodName() default {};
    
    /**
     * 拦截的请求方式枚举
     */
    MethodEnum[] methods() default {};
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy