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

io.smallrye.stork.api.config.ServiceDiscoveryAttributes Maven / Gradle / Ivy

Go to download

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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy