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

io.quarkiverse.temporal.config.MTLSRuntimeConfig Maven / Gradle / Ivy

package io.quarkiverse.temporal.config;

import java.nio.file.Path;
import java.util.Optional;

import io.quarkus.runtime.annotations.ConfigGroup;

@ConfigGroup
public interface MTLSRuntimeConfig {

    /**
     * Path to the client certificate.
     */
    Optional clientCertPath();

    /**
     * Path to the client key.
     */
    Optional clientKeyPath();

    /**
     * Password for the client key.
     */
    Optional password();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy