public static enum CertificatesManager.RevokeReason extends java.lang.Enum<CertificatesManager.RevokeReason>
Enum Constant and Description |
---|
CRL_REASON_AFFILIATION_CHANGED
Имя пользователя или другая информация в сертификате изменена, но нет причины полагать, что секретный ключ
скомпрометирован
|
CRL_REASON_CA_COMPROMISE
Компрометация Центра Сертификации
|
CRL_REASON_CESSATION_OF_OPERATION
Сертификат более не нужен для целей, которых он выдавался, но нет причины полагать, что секретный ключ
скомпрометирован
|
CRL_REASON_KEY_COMPROMISE
Компрометация ключей
|
CRL_REASON_SUPERSEDED
Сертификат заменен другим, но нет причины полагать, что секретный ключ скомпрометирован
|
CRL_REASON_UNSPECIFIED
Причина неизвестна
|
Modifier and Type | Method and Description |
---|---|
static CertificatesManager.RevokeReason |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CertificatesManager.RevokeReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CertificatesManager.RevokeReason CRL_REASON_UNSPECIFIED
public static final CertificatesManager.RevokeReason CRL_REASON_KEY_COMPROMISE
public static final CertificatesManager.RevokeReason CRL_REASON_CA_COMPROMISE
public static final CertificatesManager.RevokeReason CRL_REASON_AFFILIATION_CHANGED
public static final CertificatesManager.RevokeReason CRL_REASON_SUPERSEDED
public static final CertificatesManager.RevokeReason CRL_REASON_CESSATION_OF_OPERATION
public static CertificatesManager.RevokeReason[] values()
for (CertificatesManager.RevokeReason c : CertificatesManager.RevokeReason.values()) System.out.println(c);
public static CertificatesManager.RevokeReason 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 namejava.lang.NullPointerException
- if the argument is null