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

fun.bigtable.kraken.annotation.enable.EnableApiDeprecated Maven / Gradle / Ivy

There is a newer version: 2.0.9.1
Show newest version
package fun.bigtable.kraken.annotation.enable;

import fun.bigtable.kraken.web.ApiDeprecatedAdvice;
import org.springframework.context.annotation.Import;

import java.lang.annotation.*;


/**
 * 弃用接口注解
 * 所有使用了ApiDeprecated注解的接口将重定义返回
 *
 * @see fun.bigtable.kraken.annotation.ApiDeprecated
 */
@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Import({ApiDeprecatedAdvice.class})
public @interface EnableApiDeprecated {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy