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

io.quarkus.kafka.streams.runtime.TrustStoreConfig 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 TrustStoreConfig {
    /**
     * Trust store type
     */
    @ConfigItem
    public Optional type;

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

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

    /**
     * Trust store certificates
     */
    @ConfigItem
    public Optional certificates;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy