Interface ClientCredentialsOAuthFlowOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
ClientCredentialsOAuthFlow, ClientCredentialsOAuthFlow.Builder

@Generated public interface ClientCredentialsOAuthFlowOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    The available scopes for the OAuth2 security scheme.
    The URL to be used for obtaining refresh tokens.
    com.google.protobuf.ByteString
    The URL to be used for obtaining refresh tokens.
    Deprecated.
    int
    The available scopes for the OAuth2 security scheme.
    The available scopes for the OAuth2 security scheme.
    getScopesOrDefault(String key, String defaultValue)
    The available scopes for the OAuth2 security scheme.
    The available scopes for the OAuth2 security scheme.
    The token URL to be used for this flow.
    com.google.protobuf.ByteString
    The token URL to be used for this flow.

    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 Details

    • getTokenUrl

      String getTokenUrl()
       The token URL to be used for this flow. This MUST be in the form of a URL.
       The OAuth2 standard requires the use of TLS.
       
      string token_url = 1;
      Returns:
      The tokenUrl.
    • getTokenUrlBytes

      com.google.protobuf.ByteString getTokenUrlBytes()
       The token URL to be used for this flow. This MUST be in the form of a URL.
       The OAuth2 standard requires the use of TLS.
       
      string token_url = 1;
      Returns:
      The bytes for tokenUrl.
    • getRefreshUrl

      String getRefreshUrl()
       The URL to be used for obtaining refresh tokens. This MUST be in the
       form of a URL. The OAuth2 standard requires the use of TLS.
       
      string refresh_url = 2;
      Returns:
      The refreshUrl.
    • getRefreshUrlBytes

      com.google.protobuf.ByteString getRefreshUrlBytes()
       The URL to be used for obtaining refresh tokens. This MUST be in the
       form of a URL. The OAuth2 standard requires the use of TLS.
       
      string refresh_url = 2;
      Returns:
      The bytes for refreshUrl.
    • getScopesCount

      int getScopesCount()
       The available scopes for the OAuth2 security scheme. A map between the
       scope name and a short description for it. The map MAY be empty.
       
      map<string, string> scopes = 3;
    • containsScopes

      boolean containsScopes(String key)
       The available scopes for the OAuth2 security scheme. A map between the
       scope name and a short description for it. The map MAY be empty.
       
      map<string, string> scopes = 3;
    • getScopes

      Deprecated.
      Use getScopesMap() instead.
    • getScopesMap

      Map<String,String> getScopesMap()
       The available scopes for the OAuth2 security scheme. A map between the
       scope name and a short description for it. The map MAY be empty.
       
      map<string, string> scopes = 3;
    • getScopesOrDefault

      String getScopesOrDefault(String key, String defaultValue)
       The available scopes for the OAuth2 security scheme. A map between the
       scope name and a short description for it. The map MAY be empty.
       
      map<string, string> scopes = 3;
    • getScopesOrThrow

      String getScopesOrThrow(String key)
       The available scopes for the OAuth2 security scheme. A map between the
       scope name and a short description for it. The map MAY be empty.
       
      map<string, string> scopes = 3;