Enum 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 enum envoy.extensions.filters.http.oauth2.v3.OAuth2Config.AuthType
    • 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;
    • 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 name
        java.lang.NullPointerException - if the argument is null
      • getNumber

        public final int getNumber()
        Specified by:
        getNumber in interface com.google.protobuf.Internal.EnumLite
        Specified by:
        getNumber in interface com.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 name
        java.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:
        getValueDescriptor in interface com.google.protobuf.ProtocolMessageEnum
      • getDescriptorForType

        public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
        Specified by:
        getDescriptorForType in interface com.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 name
        java.lang.NullPointerException - if the argument is null