public static enum Neo4jProperties.Security.TrustStrategy extends Enum<Neo4jProperties.Security.TrustStrategy>
Enum Constant and Description |
---|
TRUST_ALL_CERTIFICATES
Trust all certificates.
|
TRUST_CUSTOM_CA_SIGNED_CERTIFICATES
Trust certificates that are signed by a trusted certificate.
|
TRUST_SYSTEM_CA_SIGNED_CERTIFICATES
Trust certificates that can be verified through the local system store.
|
Modifier and Type | Method and Description |
---|---|
static Neo4jProperties.Security.TrustStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Neo4jProperties.Security.TrustStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Neo4jProperties.Security.TrustStrategy TRUST_ALL_CERTIFICATES
public static final Neo4jProperties.Security.TrustStrategy TRUST_CUSTOM_CA_SIGNED_CERTIFICATES
public static final Neo4jProperties.Security.TrustStrategy TRUST_SYSTEM_CA_SIGNED_CERTIFICATES
public static Neo4jProperties.Security.TrustStrategy[] values()
for (Neo4jProperties.Security.TrustStrategy c : Neo4jProperties.Security.TrustStrategy.values()) System.out.println(c);
public static Neo4jProperties.Security.TrustStrategy 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