io.quarkus.kafka.streams.runtime.KeyStoreConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-kafka-streams Show documentation
Show all versions of quarkus-kafka-streams Show documentation
Implement stream processing applications based on Apache Kafka
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;
}