Package org.jivesoftware.openfire
Enum Connection.ClientAuth
- java.lang.Object
-
- java.lang.Enum<Connection.ClientAuth>
-
- org.jivesoftware.openfire.Connection.ClientAuth
-
- All Implemented Interfaces:
Serializable
,Comparable<Connection.ClientAuth>
- Enclosing interface:
- Connection
public static enum Connection.ClientAuth extends Enum<Connection.ClientAuth>
Enumeration that specifies if clients should be authenticated (and how) while negotiating TLS.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Connection.ClientAuth
valueOf(String name)
Returns the enum constant of this type with the specified name.static Connection.ClientAuth[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
disabled
public static final Connection.ClientAuth disabled
No authentication will be performed on the client. Client credentials will not be verified while negotiating TLS.
-
wanted
public static final Connection.ClientAuth wanted
Clients will try to be authenticated. Unlikeneeded
, if the client chooses not to provide authentication information about itself, the TLS negotiations will stop and the connection will be dropped. This option is only useful for engines in the server mode.
-
needed
public static final Connection.ClientAuth needed
Clients need to be authenticated. Unlikewanted
, if the client chooses not to provide authentication information about itself, the TLS negotiations will continue. This option is only useful for engines in the server mode.
-
-
Method Detail
-
values
public static Connection.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 (Connection.ClientAuth c : Connection.ClientAuth.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Connection.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 nameNullPointerException
- if the argument is null
-
-