public static enum KeyStoreProvider.TrustLevel extends Enum<KeyStoreProvider.TrustLevel>
KeyStoreProvider
assigns to the provided keystore.Enum Constant and Description |
---|
TRUST
Unlimited trust - modules signed with certificates in this store
will be installed without further user requests.
|
TRUST_CA
Unlimited trust - modules signed with certificates in this store
will be installed without further user requests.
|
VALIDATE
Plugins signed with certificates from this store will show up as
"Signed and valid".
|
VALIDATE_CA
Plugins signed with certificates created by these certificates
will show up as "Signed and valid".
|
Modifier and Type | Method and Description |
---|---|
static KeyStoreProvider.TrustLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KeyStoreProvider.TrustLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KeyStoreProvider.TrustLevel TRUST
public static final KeyStoreProvider.TrustLevel TRUST_CA
TRUST
in that, these certificates are subject to a
CertPathValidator
public static final KeyStoreProvider.TrustLevel VALIDATE
public static final KeyStoreProvider.TrustLevel VALIDATE_CA
VALIDATE
not subject to PKIX checking, these certificates
are run through a CertPathValidator
.public static KeyStoreProvider.TrustLevel[] values()
public static KeyStoreProvider.TrustLevel 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 null