org.opends.admin.ads.util
Enum ApplicationTrustManager.Cause

java.lang.Object
  extended by java.lang.Enum<ApplicationTrustManager.Cause>
      extended by org.opends.admin.ads.util.ApplicationTrustManager.Cause
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ApplicationTrustManager.Cause>
Enclosing class:
ApplicationTrustManager

public static enum ApplicationTrustManager.Cause
extends java.lang.Enum<ApplicationTrustManager.Cause>

The enumeration for the different causes for which the trust manager can refuse to accept a certificate.


Enum Constant Summary
HOST_NAME_MISMATCH
          The certificate's subject DN's value and the host name we tried to connect to do not match.
NOT_TRUSTED
          The certificate was not trusted.
 
Method Summary
static ApplicationTrustManager.Cause valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ApplicationTrustManager.Cause[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

NOT_TRUSTED

public static final ApplicationTrustManager.Cause NOT_TRUSTED
The certificate was not trusted.


HOST_NAME_MISMATCH

public static final ApplicationTrustManager.Cause HOST_NAME_MISMATCH
The certificate's subject DN's value and the host name we tried to connect to do not match.

Method Detail

values

public static ApplicationTrustManager.Cause[] 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 (ApplicationTrustManager.Cause c : ApplicationTrustManager.Cause.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static ApplicationTrustManager.Cause valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null