io.quarkus.arc.runtime.ConfigStaticInitCheck Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-arc Show documentation
Show all versions of quarkus-arc Show documentation
Build time CDI dependency injection
package io.quarkus.arc.runtime;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import jakarta.interceptor.InterceptorBinding;
/**
* Interceptor binding for {@link ConfigStaticInitCheckInterceptor}.
*/
@InterceptorBinding
@Retention(RUNTIME)
@Target(TYPE)
public @interface ConfigStaticInitCheck {
}