public static enum OidcTenantConfig.Tls.Verification extends Enum<OidcTenantConfig.Tls.Verification>
| Enum Constant and Description |
|---|
NONE
All certificated are trusted and hostname verification is disabled.
|
REQUIRED
Certificates are validated and hostname verification is enabled.
|
| Modifier and Type | Method and Description |
|---|---|
static OidcTenantConfig.Tls.Verification |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OidcTenantConfig.Tls.Verification[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OidcTenantConfig.Tls.Verification REQUIRED
public static final OidcTenantConfig.Tls.Verification NONE
public static OidcTenantConfig.Tls.Verification[] values()
for (OidcTenantConfig.Tls.Verification c : OidcTenantConfig.Tls.Verification.values()) System.out.println(c);
public static OidcTenantConfig.Tls.Verification 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 © 2020 JBoss by Red Hat. All rights reserved.