public static enum CcTrustManagerCallback.CertificateResponse extends Enum<CcTrustManagerCallback.CertificateResponse>
Enum Constant and Description |
---|
ACCEPT_AND_INSTALL_CERTIFICATE
Accept this certificate and install it into the key store
|
ACCEPT_CERTIFICATE_TEMPORARILY
Temporarily accept the certificate for this session.
|
REJECT_CERTIFICATE
Reject this certificate for this session.
|
Modifier and Type | Method and Description |
---|---|
static CcTrustManagerCallback.CertificateResponse |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CcTrustManagerCallback.CertificateResponse[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CcTrustManagerCallback.CertificateResponse ACCEPT_AND_INSTALL_CERTIFICATE
public static final CcTrustManagerCallback.CertificateResponse ACCEPT_CERTIFICATE_TEMPORARILY
public static final CcTrustManagerCallback.CertificateResponse REJECT_CERTIFICATE
public static CcTrustManagerCallback.CertificateResponse valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullpublic static CcTrustManagerCallback.CertificateResponse[] values()
for (CcTrustManagerCallback.CertificateResponse c : CcTrustManagerCallback.CertificateResponse.values()) System.out.println(c);
Copyright © IBM 2017. All rights reserved.