-
Notifications
You must be signed in to change notification settings - Fork 580
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
Allowed cipher suite can now be specified for WebServer and WebClient #3144
Conversation
Signed-off-by: David Kral <david.k.kral@oracle.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
* @param allowedCipherSuite cipher suite | ||
* @return updated builder instance | ||
*/ | ||
public Builder allowedCipherSuite(List<String> allowedCipherSuite) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Consider using a vararg method as well
Signed-off-by: David Kral <david.k.kral@oracle.com>
WebServerTls webServerTls = builder.tlsConfig(); | ||
this.webServerTls = webServerTls.enabled() ? webServerTls : null; | ||
|
||
if (webServerTls.enabled()) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is this still in, when the sslContext gets created in initializer?
…d methods. Signed-off-by: Tomas Langer <tomas.langer@oracle.com>
Signed-off-by: Tomas Langer <tomas.langer@oracle.com>
Fixes #2860