io.smallrye.stork.api.config.ServiceRegistrarAttributes Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of stork-api Show documentation
Show all versions of stork-api Show documentation
Main Stork API classes. You are likely to need `smallrye-stork-core` and not this module.
The newest version!
package io.smallrye.stork.api.config;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Annotation used to define arrays of {@link ServiceRegistrarAttribute}.
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface ServiceRegistrarAttributes {
/**
* @return the array of {@link ServiceRegistrarAttribute}, must not contain {@code null}.
*/
ServiceRegistrarAttribute[] value();
}