Interface OAuth2Credentials.CookieNamesOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
OAuth2Credentials.CookieNames,OAuth2Credentials.CookieNames.Builder
- Enclosing class:
- OAuth2Credentials
public static interface OAuth2Credentials.CookieNamesOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetBearerToken()Cookie name to hold OAuth bearer token value.com.google.protobuf.ByteStringgetBearerTokenBytes()Cookie name to hold OAuth bearer token value.StringgetOauthExpires()Cookie name to hold OAuth expiry value.com.google.protobuf.ByteStringgetOauthExpiresBytes()Cookie name to hold OAuth expiry value.StringgetOauthHmac()Cookie name to hold OAuth HMAC value.com.google.protobuf.ByteStringgetOauthHmacBytes()Cookie name to hold OAuth HMAC value.-
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.
-
-