Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ public class PemSslBundleProperties extends SslBundleProperties {
/**
* Keystore properties.
*/
private Store keystore = new Store();
private final Store keystore = new Store();

/**
* Truststore properties.
*/
private Store truststore = new Store();
private final Store truststore = new Store();

public Store getKeystore() {
return this.keystore;
Expand All @@ -54,22 +54,22 @@ public static class Store {
/**
* Type of the store to create, e.g. JKS.
*/
String type;
private String type;

/**
* Location or content of the certificate in PEM format.
*/
String certificate;
private String certificate;

/**
* Location or content of the private key in PEM format.
*/
String privateKey;
private String privateKey;

/**
* Password used to decrypt an encrypted private key.
*/
String privateKeyPassword;
private String privateKeyPassword;

public String getType() {
return this.type;
Expand Down