io.quarkus.kafka.streams.runtime.KeyStoreConfig Maven / Gradle / Ivy
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 - 2025 Weber Informatics LLC | Privacy Policy