frankgh commented on code in PR #2652:
URL: https://github.com/apache/cassandra/pull/2652#discussion_r1430914474


##########
src/java/org/apache/cassandra/config/EncryptionOptions.java:
##########
@@ -67,6 +69,42 @@ public String description()
         }
     }
 
+    public enum ClientAuth
+    {
+        REQUIRED("true"),
+        NOT_REQUIRED("false"),
+        OPTIONAL("optional");
+        private final String value;
+        private static final Map<String, ClientAuth> VALUES = new 
TreeMap<>(String.CASE_INSENSITIVE_ORDER);

Review Comment:
   giving this a second thought. It looks like the values are always 
lowercased, so I think we should go back to the original HashMap implementation



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to