From 37892e8d7640fadc0db6ceaa0f22b57f748a3de5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B0=95=EC=A0=95=ED=9B=88=20Kang=20Jeonghun?= Date: Sat, 9 Aug 2025 17:49:25 +0900 Subject: [PATCH] fix SslOptions getCiphers() and getEnabledProtocols() document MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 강정훈 Kang Jeonghun --- .../main/java/org/springframework/boot/ssl/SslOptions.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/core/spring-boot/src/main/java/org/springframework/boot/ssl/SslOptions.java b/core/spring-boot/src/main/java/org/springframework/boot/ssl/SslOptions.java index 312a3cba96a5..3713f5ee1640 100644 --- a/core/spring-boot/src/main/java/org/springframework/boot/ssl/SslOptions.java +++ b/core/spring-boot/src/main/java/org/springframework/boot/ssl/SslOptions.java @@ -32,6 +32,7 @@ * Configuration options that should be applied when establishing an SSL connection. * * @author Scott Frederick + * @author Jeonghun Kang * @since 3.1.0 * @see SslBundle#getOptions() */ @@ -51,7 +52,7 @@ default boolean isSpecified() { } /** - * Return the ciphers that can be used or an empty set. The cipher names in this set + * Return the ciphers that can be used or null. The cipher names in this set * should be compatible with those supported by * {@link SSLEngine#getSupportedCipherSuites()}. * @return the ciphers that can be used or {@code null} @@ -59,7 +60,7 @@ default boolean isSpecified() { String @Nullable [] getCiphers(); /** - * Return the protocols that should be enabled or an empty set. The protocols names in + * Return the protocols that should be enabled or null. The protocols names in * this set should be compatible with those supported by * {@link SSLEngine#getSupportedProtocols()}. * @return the protocols to enable or {@code null}