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

pl.allegro.tech.hermes.common.ssl.KeystoreSource Maven / Gradle / Ivy

The newest version!
package pl.allegro.tech.hermes.common.ssl;

public enum KeystoreSource {
    JRE("jre"),
    PROVIDED("provided");

    KeystoreSource(String value) {
        this.value = value;
    }

    private final String value;

    public final String getValue() {
        return value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy