io.nats.client.impl.SSLContextFactoryProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jnats Show documentation
Show all versions of jnats Show documentation
Client library for working with the NATS messaging system.
// Copyright 2023 The NATS Authors
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at:
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package io.nats.client.impl;
public class SSLContextFactoryProperties {
public final String keystorePath;
public final char[] keystorePassword;
public final String truststorePath;
public final char[] truststorePassword;
public final String tlsAlgorithm;
private SSLContextFactoryProperties(Builder b) {
this.keystorePath = b.keystore;
this.keystorePassword = b.keystorePassword;
this.truststorePath = b.truststore;
this.truststorePassword = b.truststorePassword;
this.tlsAlgorithm = b.tlsAlgorithm;
}
public String getKeystorePath() {
return keystorePath;
}
public char[] getKeystorePassword() {
return keystorePassword;
}
public String getTruststorePath() {
return truststorePath;
}
public char[] getTruststorePassword() {
return truststorePassword;
}
public String getTlsAlgorithm() {
return tlsAlgorithm;
}
public static class Builder {
String keystore;
char[] keystorePassword;
String truststore;
char[] truststorePassword;
String tlsAlgorithm;
public Builder keystore(String keystore) {
this.keystore = keystore;
return this;
}
public Builder keystorePassword(char[] keystorePassword) {
this.keystorePassword = keystorePassword;
return this;
}
public Builder truststore(String truststore) {
this.truststore = truststore;
return this;
}
public Builder truststorePassword(char[] truststorePassword) {
this.truststorePassword = truststorePassword;
return this;
}
public Builder tlsAlgorithm(String tlsAlgorithm) {
this.tlsAlgorithm = tlsAlgorithm;
return this;
}
public SSLContextFactoryProperties build() {
return new SSLContextFactoryProperties(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy