io.smallrye.stork.api.config.ServiceDiscoveryAttributes 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 ServiceDiscoveryAttribute}.
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface ServiceDiscoveryAttributes {
/**
* @return the array of {@link ServiceDiscoveryAttribute}, must not contain {@code null}.
*/
ServiceDiscoveryAttribute[] value();
}