LoadedPemSslStore() — spring-boot Function Reference
Architecture documentation for the LoadedPemSslStore() function in LoadedPemSslStore.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD d040f5de_4991_c6cc_a42b_485f4d56a4e1["LoadedPemSslStore()"] 7344a3ad_5293_86bf_7284_efb618bb1372["withAlias()"] 7344a3ad_5293_86bf_7284_efb618bb1372 -->|calls| d040f5de_4991_c6cc_a42b_485f4d56a4e1 5488026a_8b68_eea6_34a0_802604ea7f03["withPassword()"] 5488026a_8b68_eea6_34a0_802604ea7f03 -->|calls| d040f5de_4991_c6cc_a42b_485f4d56a4e1 89aab2b7_dd94_d3d2_0bb1_b52d3a498eac["supplier()"] d040f5de_4991_c6cc_a42b_485f4d56a4e1 -->|calls| 89aab2b7_dd94_d3d2_0bb1_b52d3a498eac 7762847f_9d37_5ac0_f925_1640765eafcb["loadCertificates()"] d040f5de_4991_c6cc_a42b_485f4d56a4e1 -->|calls| 7762847f_9d37_5ac0_f925_1640765eafcb 45416c7c_f392_5249_dfd2_d59e5b25526b["loadPrivateKey()"] d040f5de_4991_c6cc_a42b_485f4d56a4e1 -->|calls| 45416c7c_f392_5249_dfd2_d59e5b25526b style d040f5de_4991_c6cc_a42b_485f4d56a4e1 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot/src/main/java/org/springframework/boot/ssl/pem/LoadedPemSslStore.java lines 49–56
LoadedPemSslStore(PemSslStoreDetails details, ResourceLoader resourceLoader) {
Assert.notNull(details, "'details' must not be null");
Assert.notNull(resourceLoader, "'resourceLoader' must not be null");
this.details = details;
this.resourceLoader = resourceLoader;
this.certificatesSupplier = supplier(() -> loadCertificates(details, resourceLoader));
this.privateKeySupplier = supplier(() -> loadPrivateKey(details, resourceLoader));
}
Domain
Subdomains
Calls
- loadCertificates()
- loadPrivateKey()
- supplier()
Called By
- withAlias()
- withPassword()
Source
Frequently Asked Questions
What does LoadedPemSslStore() do?
LoadedPemSslStore() is a function in the spring-boot codebase.
What does LoadedPemSslStore() call?
LoadedPemSslStore() calls 3 function(s): loadCertificates, loadPrivateKey, supplier.
What calls LoadedPemSslStore()?
LoadedPemSslStore() is called by 2 function(s): withAlias, withPassword.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free