-
Notifications
You must be signed in to change notification settings - Fork 157
Simplifies config for (not) using encryption. #345
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
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -65,8 +65,8 @@ public class Config | |
| */ | ||
| private final long idleTimeBeforeConnectionTest; | ||
|
|
||
| /** Level of encryption we need to adhere to */ | ||
| private final EncryptionLevel encryptionLevel; | ||
| /** Indicator for encrypted traffic */ | ||
| private final boolean encrypted; | ||
|
|
||
| /** Strategy for how to trust encryption certificate */ | ||
| private final TrustStrategy trustStrategy; | ||
|
|
@@ -86,7 +86,7 @@ private Config( ConfigBuilder builder) | |
| this.idleTimeBeforeConnectionTest = builder.idleTimeBeforeConnectionTest; | ||
| this.maxIdleConnectionPoolSize = builder.maxIdleConnectionPoolSize; | ||
|
|
||
| this.encryptionLevel = builder.encryptionLevel; | ||
| this.encrypted = builder.encrypted; | ||
| this.trustStrategy = builder.trustStrategy; | ||
| this.routingFailureLimit = builder.routingFailureLimit; | ||
| this.routingRetryDelayMillis = builder.routingRetryDelayMillis; | ||
|
|
@@ -156,9 +156,18 @@ public int connectionTimeoutMillis() | |
| /** | ||
| * @return the level of encryption required for all connections. | ||
| */ | ||
| @Deprecated | ||
| public EncryptionLevel encryptionLevel() | ||
| { | ||
| return encryptionLevel; | ||
| return encrypted ? EncryptionLevel.REQUIRED : EncryptionLevel.NONE; | ||
| } | ||
|
|
||
| /** | ||
| * @return indicator for encrypted communication. | ||
| */ | ||
| public boolean encrypted() | ||
| { | ||
| return encrypted; | ||
| } | ||
|
|
||
| /** | ||
|
|
@@ -205,7 +214,7 @@ public static class ConfigBuilder | |
| private boolean logLeakedSessions; | ||
| private int maxIdleConnectionPoolSize = PoolSettings.DEFAULT_MAX_IDLE_CONNECTION_POOL_SIZE; | ||
| private long idleTimeBeforeConnectionTest = PoolSettings.DEFAULT_IDLE_TIME_BEFORE_CONNECTION_TEST; | ||
| private EncryptionLevel encryptionLevel = EncryptionLevel.REQUIRED; | ||
| private boolean encrypted = true; | ||
| private TrustStrategy trustStrategy = trustAllCertificates(); | ||
| private int routingFailureLimit = 1; | ||
| private long routingRetryDelayMillis = TimeUnit.SECONDS.toMillis( 5 ); | ||
|
|
@@ -328,9 +337,30 @@ public ConfigBuilder withConnectionLivenessCheckTimeout( long value, TimeUnit un | |
| * @param level the TLS level to use | ||
| * @return this builder | ||
| */ | ||
| @Deprecated | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
| public ConfigBuilder withEncryptionLevel( EncryptionLevel level ) | ||
| { | ||
| this.encryptionLevel = level; | ||
| this.encrypted = level == EncryptionLevel.REQUIRED; | ||
| return this; | ||
| } | ||
|
|
||
| /** | ||
| * Set to use encrypted traffic. | ||
| * @return this builder | ||
| */ | ||
| public ConfigBuilder withEncryption() | ||
| { | ||
| this.encrypted = true; | ||
| return this; | ||
| } | ||
|
|
||
| /** | ||
| * Set to use unencrypted traffic. | ||
| * @return this builder | ||
| */ | ||
| public ConfigBuilder withoutEncryption() | ||
| { | ||
| this.encrypted = false; | ||
| return this; | ||
| } | ||
|
|
||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
What do you think about
isEncryptedname for this method?