public enum TLSSettingsMode extends Enum<TLSSettingsMode>
| Enum Constant and Description |
|---|
DISABLE
Do not setup a TLS connection to the upstream endpoint.
|
ISTIO_MUTUAL
Secure connections to the upstream using mutual TLS by presenting
client certificates for authentication.
|
MUTUAL
Secure connections to the upstream using mutual TLS by presenting
client certificates for authentication.
|
SIMPLE
Originate a TLS connection to the upstream endpoint.
|
| Modifier and Type | Method and Description |
|---|---|
int |
value() |
static TLSSettingsMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TLSSettingsMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TLSSettingsMode DISABLE
public static final TLSSettingsMode SIMPLE
public static final TLSSettingsMode MUTUAL
public static final TLSSettingsMode ISTIO_MUTUAL
public static TLSSettingsMode[] values()
for (TLSSettingsMode c : TLSSettingsMode.values()) System.out.println(c);
public static TLSSettingsMode 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 nullpublic int value()
Copyright © 2017–2018 Red Hat. All rights reserved.