getRegistered() — spring-boot Function Reference
Architecture documentation for the getRegistered() function in DefaultSslBundleRegistry.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 131ee6c9_41d5_cca5_365c_dcfe948297ab["getRegistered()"] 8e09e02c_386b_c91d_c43c_2bf07abbe521["updateBundle()"] 8e09e02c_386b_c91d_c43c_2bf07abbe521 -->|calls| 131ee6c9_41d5_cca5_365c_dcfe948297ab 9daf3889_6b23_6f27_599f_1d3617c46c31["getBundle()"] 9daf3889_6b23_6f27_599f_1d3617c46c31 -->|calls| 131ee6c9_41d5_cca5_365c_dcfe948297ab f6000151_f728_bae2_4431_55f1a848a532["addBundleUpdateHandler()"] f6000151_f728_bae2_4431_55f1a848a532 -->|calls| 131ee6c9_41d5_cca5_365c_dcfe948297ab style 131ee6c9_41d5_cca5_365c_dcfe948297ab fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot/src/main/java/org/springframework/boot/ssl/DefaultSslBundleRegistry.java lines 94–101
private RegisteredSslBundle getRegistered(String name) throws NoSuchSslBundleException {
Assert.notNull(name, "'name' must not be null");
RegisteredSslBundle registered = this.registeredBundles.get(name);
if (registered == null) {
throw new NoSuchSslBundleException(name, "SSL bundle name '%s' cannot be found".formatted(name));
}
return registered;
}
Domain
Subdomains
Called By
- addBundleUpdateHandler()
- getBundle()
- updateBundle()
Source
Frequently Asked Questions
What does getRegistered() do?
getRegistered() is a function in the spring-boot codebase.
What calls getRegistered()?
getRegistered() is called by 3 function(s): addBundleUpdateHandler, getBundle, updateBundle.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free