public enum CertificateCheck extends Enum<CertificateCheck>
DefaultCertificateStoreListener| Enum Constant and Description |
|---|
SelfSigned
Is the certificate signed by the certificate itself (this can be OK).
|
Signature
Is the certificate signed by a trusted signer (or self).
|
Trusted
is the certificate already defined as trusted, i.e.
|
Uri
does the certificate contain the applicationUri, equal to the one in the
ApplicationDescription.
|
UriValid
validity of the URI.
|
Validity
Is the certificate time valid.
|
| Modifier and Type | Field and Description |
|---|---|
static Set<CertificateCheck> |
COMPULSORY
All tests that must pass, to accept the certificate.
|
| Modifier and Type | Method and Description |
|---|---|
static CertificateCheck |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CertificateCheck[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CertificateCheck SelfSigned
public static final CertificateCheck Signature
public static final CertificateCheck Trusted
public static final CertificateCheck Uri
public static final CertificateCheck UriValid
public static final CertificateCheck Validity
public static final Set<CertificateCheck> COMPULSORY
public static CertificateCheck[] values()
for (CertificateCheck c : CertificateCheck.values()) System.out.println(c);
public static CertificateCheck 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 nullCopyright © 2026. All rights reserved.