You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/ssl/PemSslBundleProperties.java
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -31,12 +31,12 @@ public class PemSslBundleProperties extends SslBundleProperties {
31
31
/**
32
32
* Keystore properties.
33
33
*/
34
-
privateStorekeystore = newStore();
34
+
privatefinalStorekeystore = newStore();
35
35
36
36
/**
37
37
* Truststore properties.
38
38
*/
39
-
privateStoretruststore = newStore();
39
+
privatefinalStoretruststore = newStore();
40
40
41
41
publicStoregetKeystore() {
42
42
returnthis.keystore;
@@ -54,22 +54,22 @@ public static class Store {
54
54
/**
55
55
* Type of the store to create, e.g. JKS.
56
56
*/
57
-
Stringtype;
57
+
privateStringtype;
58
58
59
59
/**
60
60
* Location or content of the certificate in PEM format.
61
61
*/
62
-
Stringcertificate;
62
+
privateStringcertificate;
63
63
64
64
/**
65
65
* Location or content of the private key in PEM format.
66
66
*/
67
-
StringprivateKey;
67
+
privateStringprivateKey;
68
68
69
69
/**
70
70
* Password used to decrypt an encrypted private key.
0 commit comments