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

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

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

import java.util.Optional;

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

@SuppressWarnings("OptionalUsedAsFieldOrParameterType")
@ConfigGroup
public class GrpcTransportSecurity {

    /**
     * The path to the certificate file.
     */
    @ConfigItem
    public Optional certificate;

    /**
     * The path to the private key file.
     */
    @ConfigItem
    public Optional key;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy