public enum RequiredAuthType extends Enum<RequiredAuthType>
| Enum Constant and Description |
|---|
BASIC
BASIC
|
DEFAULT
Default (nothing)
|
MTLS
Certificate-based mutual TLS/SSL
|
| Modifier and Type | Field and Description |
|---|---|
static String |
ENDPOINT_AUTHORIZATION_TYPE |
| Modifier and Type | Method and Description |
|---|---|
static RequiredAuthType |
fromValue(String value)
From string to enum
|
static RequiredAuthType |
parseType(io.apiman.gateway.engine.beans.Service service)
Parse service endpoint properties to retrieve enum value (if any)
|
static RequiredAuthType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RequiredAuthType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RequiredAuthType MTLS
public static final RequiredAuthType BASIC
public static final RequiredAuthType DEFAULT
public static final String ENDPOINT_AUTHORIZATION_TYPE
public static RequiredAuthType[] values()
for (RequiredAuthType c : RequiredAuthType.values()) System.out.println(c);
public static RequiredAuthType 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 static RequiredAuthType fromValue(String value)
value - the stringpublic static RequiredAuthType parseType(io.apiman.gateway.engine.beans.Service service)
service - the serviceCopyright © 2015 JBoss, a division of Red Hat. All rights reserved.