Package org.apache.zookeeper.common
Enum X509Util.ClientAuth
- java.lang.Object
- 
- java.lang.Enum<X509Util.ClientAuth>
- 
- org.apache.zookeeper.common.X509Util.ClientAuth
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<X509Util.ClientAuth>
 - Enclosing class:
- X509Util
 
 public static enum X509Util.ClientAuth extends Enum<X509Util.ClientAuth> Enum specifying the client auth requirement of server-side TLS sockets created by this X509Util.- NONE - do not request a client certificate.
- WANT - request a client certificate, but allow anonymous clients to connect.
- NEED - require a client certificate, disconnect anonymous clients.
 
- 
- 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static X509Util.ClientAuthfromPropertyValue(String prop)Converts a property value to a ClientAuth enum.io.netty.handler.ssl.ClientAuthtoNettyClientAuth()static X509Util.ClientAuthvalueOf(String name)Returns the enum constant of this type with the specified name.static X509Util.ClientAuth[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
NONEpublic static final X509Util.ClientAuth NONE 
 - 
WANTpublic static final X509Util.ClientAuth WANT 
 - 
NEEDpublic static final X509Util.ClientAuth NEED 
 
- 
 - 
Method Detail- 
valuespublic static X509Util.ClientAuth[] values() Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (X509Util.ClientAuth c : X509Util.ClientAuth.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static X509Util.ClientAuth valueOf(String name) Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- IllegalArgumentException- if this enum type has no constant with the specified name
- NullPointerException- if the argument is null
 
 - 
fromPropertyValuepublic static X509Util.ClientAuth fromPropertyValue(String prop) Converts a property value to a ClientAuth enum. If the input string is empty or null, returnsClientAuth.NEED.- Parameters:
- prop- the property string.
- Returns:
- the ClientAuth.
- Throws:
- IllegalArgumentException- if the property value is not "NONE", "WANT", "NEED", or empty/null.
 
 - 
toNettyClientAuthpublic io.netty.handler.ssl.ClientAuth toNettyClientAuth() 
 
- 
 
-