com.giffing.bucket4j.spring.boot.starter.context.qualifier.Webflux Maven / Gradle / Ivy
The newest version!
package com.giffing.bucket4j.spring.boot.starter.context.qualifier;
import org.springframework.beans.factory.annotation.Qualifier;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Target({ElementType.FIELD, ElementType.METHOD, ElementType.PARAMETER})
@Retention(RetentionPolicy.RUNTIME)
@Qualifier(Webflux.VALUE)
public @interface Webflux {
String VALUE = "WEBFLUX";
}