Skip to content

Commit 18e03db

Browse files
ganjisriversnicoll
authored andcommitted
Harmonize SslOptions#getCiphers and getEnabledProtocols Javadoc
See gh-46756 Signed-off-by: 강정훈 Kang Jeonghun <[email protected]>
1 parent ab9b584 commit 18e03db

File tree

1 file changed

+3
-2
lines changed
  • spring-boot-project/spring-boot/src/main/java/org/springframework/boot/ssl

1 file changed

+3
-2
lines changed

spring-boot-project/spring-boot/src/main/java/org/springframework/boot/ssl/SslOptions.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
* Configuration options that should be applied when establishing an SSL connection.
3131
*
3232
* @author Scott Frederick
33+
* @author Jeonghun Kang
3334
* @since 3.1.0
3435
* @see SslBundle#getOptions()
3536
*/
@@ -49,15 +50,15 @@ default boolean isSpecified() {
4950
}
5051

5152
/**
52-
* Return the ciphers that can be used or an empty set. The cipher names in this set
53+
* Return the ciphers that can be used or null. The cipher names in this set
5354
* should be compatible with those supported by
5455
* {@link SSLEngine#getSupportedCipherSuites()}.
5556
* @return the ciphers that can be used or {@code null}
5657
*/
5758
String[] getCiphers();
5859

5960
/**
60-
* Return the protocols that should be enabled or an empty set. The protocols names in
61+
* Return the protocols that should be enabled or null. The protocols names in
6162
* this set should be compatible with those supported by
6263
* {@link SSLEngine#getSupportedProtocols()}.
6364
* @return the protocols to enable or {@code null}

0 commit comments

Comments
 (0)