io.deephaven.ssl.config.IdentityProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of deephaven-ssl-config Show documentation
Show all versions of deephaven-ssl-config Show documentation
The Deephaven SSL Configuration
/**
* Copyright (c) 2016-2022 Deephaven Data Labs and Patent Pending
*/
package io.deephaven.ssl.config;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import io.deephaven.annotations.SingletonStyle;
import org.immutables.value.Value.Immutable;
/**
* Include the identity material defined by the system properties "javax.net.ssl.keyStore",
* "javax.net.ssl.keyStorePassword", "javax.net.ssl.keyStoreType", and "javax.net.ssl.keyStoreProvider".
*/
@Immutable
@SingletonStyle
@JsonDeserialize(as = ImmutableIdentityProperties.class)
public abstract class IdentityProperties implements Identity {
public static IdentityProperties of() {
return ImmutableIdentityProperties.of();
}
@Override
public final , T> T walk(V visitor) {
return visitor.visit(this);
}
}