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

io.quarkus.kafka.streams.runtime.KeyStoreConfig Maven / Gradle / Ivy

There is a newer version: 3.15.0
Show newest version
package io.quarkus.kafka.streams.runtime;

import java.util.Optional;

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

@ConfigGroup
public class KeyStoreConfig {
    /**
     * Key store type
     */
    @ConfigItem
    public Optional type;

    /**
     * Key store location
     */
    @ConfigItem
    public Optional location;

    /**
     * Key store password
     */
    @ConfigItem
    public Optional password;

    /**
     * Key store private key
     */
    @ConfigItem
    public Optional key;

    /**
     * Key store certificate chain
     */
    @ConfigItem
    public Optional certificateChain;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy