createSslOptions() — spring-boot Function Reference
Architecture documentation for the createSslOptions() function in DockerComposeConnectionDetailsFactory.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 6999b737_339b_e651_88a1_d0879bcbbd8e["createSslOptions()"] 0283c010_c4fc_51c9_be91_20181bfc371d["getJksSslBundle()"] 0283c010_c4fc_51c9_be91_20181bfc371d -->|calls| 6999b737_339b_e651_88a1_d0879bcbbd8e a59f1b18_ec67_6629_09af_f76e6d6179b7["getPemSslBundle()"] a59f1b18_ec67_6629_09af_f76e6d6179b7 -->|calls| 6999b737_339b_e651_88a1_d0879bcbbd8e 0a841a8a_20f1_c517_4b01_0f36d68146a5["of()"] 6999b737_339b_e651_88a1_d0879bcbbd8e -->|calls| 0a841a8a_20f1_c517_4b01_0f36d68146a5 style 6999b737_339b_e651_88a1_d0879bcbbd8e fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot-docker-compose/src/main/java/org/springframework/boot/docker/compose/service/connection/DockerComposeConnectionDetailsFactory.java lines 206–216
private SslOptions createSslOptions(@Nullable String ciphers, @Nullable String enabledProtocols) {
Set<String> ciphersSet = null;
if (StringUtils.hasLength(ciphers)) {
ciphersSet = StringUtils.commaDelimitedListToSet(ciphers);
}
Set<String> enabledProtocolsSet = null;
if (StringUtils.hasLength(enabledProtocols)) {
enabledProtocolsSet = StringUtils.commaDelimitedListToSet(enabledProtocols);
}
return SslOptions.of(ciphersSet, enabledProtocolsSet);
}
Domain
Subdomains
Calls
Called By
Source
Frequently Asked Questions
What does createSslOptions() do?
createSslOptions() is a function in the spring-boot codebase.
What does createSslOptions() call?
createSslOptions() calls 1 function(s): of.
What calls createSslOptions()?
createSslOptions() is called by 2 function(s): getJksSslBundle, getPemSslBundle.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free