Skip to content

Commit c19a0a7

Browse files
committed
Merge branch '3.1.x'
Closes gh-36421
2 parents 0e67ec8 + 940ef7f commit c19a0a7

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/ssl/PemSslBundleProperties.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ public class PemSslBundleProperties extends SslBundleProperties {
3131
/**
3232
* Keystore properties.
3333
*/
34-
private Store keystore = new Store();
34+
private final Store keystore = new Store();
3535

3636
/**
3737
* Truststore properties.
3838
*/
39-
private Store truststore = new Store();
39+
private final Store truststore = new Store();
4040

4141
public Store getKeystore() {
4242
return this.keystore;
@@ -54,22 +54,22 @@ public static class Store {
5454
/**
5555
* Type of the store to create, e.g. JKS.
5656
*/
57-
String type;
57+
private String type;
5858

5959
/**
6060
* Location or content of the certificate in PEM format.
6161
*/
62-
String certificate;
62+
private String certificate;
6363

6464
/**
6565
* Location or content of the private key in PEM format.
6666
*/
67-
String privateKey;
67+
private String privateKey;
6868

6969
/**
7070
* Password used to decrypt an encrypted private key.
7171
*/
72-
String privateKeyPassword;
72+
private String privateKeyPassword;
7373

7474
public String getType() {
7575
return this.type;

0 commit comments

Comments
 (0)