Enum OAuth2Config.AuthType
- java.lang.Object
-
- java.lang.Enum<OAuth2Config.AuthType>
-
- io.envoyproxy.envoy.extensions.filters.http.oauth2.v3.OAuth2Config.AuthType
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite,com.google.protobuf.ProtocolMessageEnum,java.io.Serializable,java.lang.Comparable<OAuth2Config.AuthType>
- Enclosing class:
- OAuth2Config
public static enum OAuth2Config.AuthType extends java.lang.Enum<OAuth2Config.AuthType> implements com.google.protobuf.ProtocolMessageEnum
Protobuf enumenvoy.extensions.filters.http.oauth2.v3.OAuth2Config.AuthType
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BASIC_AUTHThe ``client_id`` and ``client_secret`` will be sent using HTTP Basic authentication scheme.UNRECOGNIZEDURL_ENCODED_BODYThe ``client_id`` and ``client_secret`` will be sent in the URL encoded request body.
-
Field Summary
Fields Modifier and Type Field Description static intBASIC_AUTH_VALUEThe ``client_id`` and ``client_secret`` will be sent using HTTP Basic authentication scheme.static intURL_ENCODED_BODY_VALUEThe ``client_id`` and ``client_secret`` will be sent in the URL encoded request body.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static OAuth2Config.AuthTypeforNumber(int value)static com.google.protobuf.Descriptors.EnumDescriptorgetDescriptor()com.google.protobuf.Descriptors.EnumDescriptorgetDescriptorForType()intgetNumber()com.google.protobuf.Descriptors.EnumValueDescriptorgetValueDescriptor()static com.google.protobuf.Internal.EnumLiteMap<OAuth2Config.AuthType>internalGetValueMap()static OAuth2Config.AuthTypevalueOf(int value)Deprecated.static OAuth2Config.AuthTypevalueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)Returns the enum constant of this type with the specified name.static OAuth2Config.AuthTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static OAuth2Config.AuthType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
URL_ENCODED_BODY
public static final OAuth2Config.AuthType URL_ENCODED_BODY
The ``client_id`` and ``client_secret`` will be sent in the URL encoded request body. This type should only be used when Auth server does not support Basic authentication.
URL_ENCODED_BODY = 0;
-
BASIC_AUTH
public static final OAuth2Config.AuthType BASIC_AUTH
The ``client_id`` and ``client_secret`` will be sent using HTTP Basic authentication scheme.
BASIC_AUTH = 1;
-
UNRECOGNIZED
public static final OAuth2Config.AuthType UNRECOGNIZED
-
-
Field Detail
-
URL_ENCODED_BODY_VALUE
public static final int URL_ENCODED_BODY_VALUE
The ``client_id`` and ``client_secret`` will be sent in the URL encoded request body. This type should only be used when Auth server does not support Basic authentication.
URL_ENCODED_BODY = 0;- See Also:
- Constant Field Values
-
BASIC_AUTH_VALUE
public static final int BASIC_AUTH_VALUE
The ``client_id`` and ``client_secret`` will be sent using HTTP Basic authentication scheme.
BASIC_AUTH = 1;- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static OAuth2Config.AuthType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (OAuth2Config.AuthType c : OAuth2Config.AuthType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OAuth2Config.AuthType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getNumber
public final int getNumber()
- Specified by:
getNumberin interfacecom.google.protobuf.Internal.EnumLite- Specified by:
getNumberin interfacecom.google.protobuf.ProtocolMessageEnum
-
valueOf
@Deprecated public static OAuth2Config.AuthType valueOf(int value)
Deprecated.Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
value- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
forNumber
public static OAuth2Config.AuthType forNumber(int value)
- Parameters:
value- The numeric wire value of the corresponding enum entry.- Returns:
- The enum associated with the given numeric wire value.
-
internalGetValueMap
public static com.google.protobuf.Internal.EnumLiteMap<OAuth2Config.AuthType> internalGetValueMap()
-
getValueDescriptor
public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
- Specified by:
getValueDescriptorin interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptorForType
public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
- Specified by:
getDescriptorForTypein interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptor
public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
-
valueOf
public static OAuth2Config.AuthType valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
desc- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-