Package org.jivesoftware.openfire
Enum Class Connection.ClientAuth
- All Implemented Interfaces:
Serializable
,Comparable<Connection.ClientAuth>
,Constable
- Enclosing interface:
- Connection
Enumeration that specifies if clients should be authenticated (and how) while
negotiating TLS.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic Connection.ClientAuth
Returns the enum constant of this class with the specified name.static Connection.ClientAuth[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
disabled
No authentication will be performed on the client. Client credentials will not be verified while negotiating TLS. -
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
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 Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-