|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ApplicationTrustManager.Cause>
org.opends.admin.ads.util.ApplicationTrustManager.Cause
public static 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 |
---|
public static final ApplicationTrustManager.Cause NOT_TRUSTED
public static final ApplicationTrustManager.Cause HOST_NAME_MISMATCH
Method Detail |
---|
public static ApplicationTrustManager.Cause[] values()
for (ApplicationTrustManager.Cause c : ApplicationTrustManager.Cause.values()) System.out.println(c);
public static ApplicationTrustManager.Cause valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |