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

io.quarkus.grpc.runtime.config.Xds Maven / Gradle / Ivy

There is a newer version: 3.15.1
Show newest version
package io.quarkus.grpc.runtime.config;

import io.quarkus.runtime.annotations.ConfigGroup;
import io.quarkus.runtime.annotations.ConfigItem;
import io.quarkus.runtime.annotations.IgnoreProperty;

/**
 * XDS config
 * * XDS usage
 */
@ConfigGroup
public class Xds implements Enabled {

    @Override
    @IgnoreProperty
    public boolean isEnabled() {
        return enabled;
    }

    /**
     * Explicitly enable use of XDS.
     */
    @ConfigItem(defaultValue = "false")
    public boolean enabled;

    /**
     * Use secure credentials.
     */
    @ConfigItem(defaultValue = "false")
    public boolean secure;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy