nullKeyStore() — spring-boot Function Reference
Architecture documentation for the nullKeyStore() function in SslInfoTests.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 2e7b34c7_39f4_fe2f_cb52_d22fb0f6dbb5["nullKeyStore()"] 41cd76d7_48b9_fa25_7f50_c038acb01cb4["DefaultSslBundleRegistry()"] 2e7b34c7_39f4_fe2f_cb52_d22fb0f6dbb5 -->|calls| 41cd76d7_48b9_fa25_7f50_c038acb01cb4 57be9bb5_de42_ee29_843b_d909abc58185["registerBundle()"] 2e7b34c7_39f4_fe2f_cb52_d22fb0f6dbb5 -->|calls| 57be9bb5_de42_ee29_843b_d909abc58185 18e8e575_9b86_6695_b1a9_b26cb979aa93["isEmpty()"] 2e7b34c7_39f4_fe2f_cb52_d22fb0f6dbb5 -->|calls| 18e8e575_9b86_6695_b1a9_b26cb979aa93 style 2e7b34c7_39f4_fe2f_cb52_d22fb0f6dbb5 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot/src/test/java/org/springframework/boot/info/SslInfoTests.java lines 185–193
@Test
void nullKeyStore() {
DefaultSslBundleRegistry sslBundleRegistry = new DefaultSslBundleRegistry();
sslBundleRegistry.registerBundle("test", SslBundle.of(SslStoreBundle.NONE, SslBundleKey.NONE));
SslInfo sslInfo = new SslInfo(sslBundleRegistry, CLOCK);
assertThat(sslInfo.getBundles()).hasSize(1);
assertThat(sslInfo.getBundles().get(0).getCertificateChains()).isEmpty();
assertThat(sslInfo.getBundles().get(0).getTrustStoreCertificateChains()).isEmpty();
}
Domain
Subdomains
Source
Frequently Asked Questions
What does nullKeyStore() do?
nullKeyStore() is a function in the spring-boot codebase.
What does nullKeyStore() call?
nullKeyStore() calls 3 function(s): DefaultSslBundleRegistry, isEmpty, registerBundle.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free