Package org.ldaptive.ssl
Enum AggregateTrustManager.Strategy
- java.lang.Object
-
- java.lang.Enum<AggregateTrustManager.Strategy>
-
- org.ldaptive.ssl.AggregateTrustManager.Strategy
-
- All Implemented Interfaces:
Serializable
,Comparable<AggregateTrustManager.Strategy>
- Enclosing class:
- AggregateTrustManager
public static enum AggregateTrustManager.Strategy extends Enum<AggregateTrustManager.Strategy>
Enum to define how trust managers should be processed.
-
-
Constructor Summary
Constructors Modifier Constructor Description private
Strategy()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AggregateTrustManager.Strategy
valueOf(String name)
Returns the enum constant of this type with the specified name.static AggregateTrustManager.Strategy[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALL
public static final AggregateTrustManager.Strategy ALL
all trust managers must succeed.
-
ANY
public static final AggregateTrustManager.Strategy ANY
any trust manager must succeed.
-
-
Method Detail
-
values
public static AggregateTrustManager.Strategy[] 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 (AggregateTrustManager.Strategy c : AggregateTrustManager.Strategy.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AggregateTrustManager.Strategy 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
-
-