Interface OAuth2Credentials.CookieNamesOrBuilder

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      String getBearerToken()
      Cookie name to hold OAuth bearer token value.
      com.google.protobuf.ByteString getBearerTokenBytes()
      Cookie name to hold OAuth bearer token value.
      String getOauthExpires()
      Cookie name to hold OAuth expiry value.
      com.google.protobuf.ByteString getOauthExpiresBytes()
      Cookie name to hold OAuth expiry value.
      String getOauthHmac()
      Cookie name to hold OAuth HMAC value.
      com.google.protobuf.ByteString getOauthHmacBytes()
      Cookie name to hold OAuth HMAC value.
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • Methods inherited from interface com.google.protobuf.MessageOrBuilder

        findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
    • Method Detail

      • getBearerToken

        String getBearerToken()
         Cookie name to hold OAuth bearer token value. When the authentication server validates the
         client and returns an authorization token back to the OAuth filter, no matter what format
         that token is, if :ref:`forward_bearer_token <envoy_v3_api_field_extensions.filters.http.oauth2.v3.OAuth2Config.forward_bearer_token>`
         is set to true the filter will send over the bearer token as a cookie with this name to the
         upstream. Defaults to ``BearerToken``.
         
        string bearer_token = 1 [(.validate.rules) = { ... }
        Returns:
        The bearerToken.
      • getBearerTokenBytes

        com.google.protobuf.ByteString getBearerTokenBytes()
         Cookie name to hold OAuth bearer token value. When the authentication server validates the
         client and returns an authorization token back to the OAuth filter, no matter what format
         that token is, if :ref:`forward_bearer_token <envoy_v3_api_field_extensions.filters.http.oauth2.v3.OAuth2Config.forward_bearer_token>`
         is set to true the filter will send over the bearer token as a cookie with this name to the
         upstream. Defaults to ``BearerToken``.
         
        string bearer_token = 1 [(.validate.rules) = { ... }
        Returns:
        The bytes for bearerToken.
      • getOauthHmac

        String getOauthHmac()
         Cookie name to hold OAuth HMAC value. Defaults to ``OauthHMAC``.
         
        string oauth_hmac = 2 [(.validate.rules) = { ... }
        Returns:
        The oauthHmac.
      • getOauthHmacBytes

        com.google.protobuf.ByteString getOauthHmacBytes()
         Cookie name to hold OAuth HMAC value. Defaults to ``OauthHMAC``.
         
        string oauth_hmac = 2 [(.validate.rules) = { ... }
        Returns:
        The bytes for oauthHmac.
      • getOauthExpires

        String getOauthExpires()
         Cookie name to hold OAuth expiry value. Defaults to ``OauthExpires``.
         
        string oauth_expires = 3 [(.validate.rules) = { ... }
        Returns:
        The oauthExpires.
      • getOauthExpiresBytes

        com.google.protobuf.ByteString getOauthExpiresBytes()
         Cookie name to hold OAuth expiry value. Defaults to ``OauthExpires``.
         
        string oauth_expires = 3 [(.validate.rules) = { ... }
        Returns:
        The bytes for oauthExpires.