io.quarkus.grpc.runtime.config.GrpcTransportSecurity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-grpc Show documentation
Show all versions of quarkus-grpc Show documentation
Serve and consume gRPC services
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;
}