Skip to content

Align method descriptions for SslOptions getCiphers and getEnabledProtocols with '@returns' #46756

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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()
*/
Expand All @@ -51,15 +52,15 @@ 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}
*/
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}
Expand Down