Skip to content

Commit b7d9704

Browse files
committed
fix SslOptions getCiphers() and getEnabledProtocols() document
1 parent 1cb3b1f commit b7d9704

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

core/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
@@ -32,6 +32,7 @@
3232
* Configuration options that should be applied when establishing an SSL connection.
3333
*
3434
* @author Scott Frederick
35+
* @author ganjisriver
3536
* @since 3.1.0
3637
* @see SslBundle#getOptions()
3738
*/
@@ -51,15 +52,15 @@ default boolean isSpecified() {
5152
}
5253

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

6162
/**
62-
* Return the protocols that should be enabled or {@code null}. The protocols names in
63+
* Return the protocols that should be enabled or null. The protocols names in
6364
* this set should be compatible with those supported by
6465
* {@link SSLEngine#getSupportedProtocols()}.
6566
* @return the protocols to enable or {@code null}

0 commit comments

Comments
 (0)