Sha256: d58c11fa73ed7d02455a60af05e72f0c1f7bb560e08f8de2d59dd4b7db63bee0

Contents?: true

Size: 1.58 KB

Versions: 19

Compression:

Stored size: 1.58 KB

Contents

# Copyright 2014 Google, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

module Google
  module Auth
    # Interface definition for token stores. It is not required that
    # implementations inherit from this class. It is provided for documentation
    # purposes to illustrate the API contract.
    class TokenStore
      class << self
        attr_accessor :default
      end

      # Load the token data from storage for the given ID.
      #
      # @param [String] id
      #  ID of token data to load.
      # @return [String]
      #  The loaded token data.
      def load _id
        raise "Not implemented"
      end

      # Put the token data into storage for the given ID.
      #
      # @param [String] id
      #  ID of token data to store.
      # @param [String] token
      #  The token data to store.
      def store _id, _token
        raise "Not implemented"
      end

      # Remove the token data from storage for the given ID.
      #
      # @param [String] id
      #  ID of the token data to delete
      def delete _id
        raise "Not implemented"
      end
    end
  end
end

Version data entries

19 entries across 19 versions & 2 rubygems

Version Path
googleauth-1.11.0 lib/googleauth/token_store.rb
googleauth-1.10.0 lib/googleauth/token_store.rb
googleauth-1.9.2 lib/googleauth/token_store.rb
googleauth-1.9.1 lib/googleauth/token_store.rb
googleauth-1.8.1 lib/googleauth/token_store.rb
googleauth-1.8.0 lib/googleauth/token_store.rb
googleauth-1.7.0 lib/googleauth/token_store.rb
googleauth-1.6.0 lib/googleauth/token_store.rb
fluent-plugin-google-cloud-logging-on-prem-0.1.0 vendor/ruby/3.1.0/gems/googleauth-1.5.2/lib/googleauth/token_store.rb
googleauth-1.5.2 lib/googleauth/token_store.rb
googleauth-1.5.1 lib/googleauth/token_store.rb
googleauth-1.5.0 lib/googleauth/token_store.rb
googleauth-1.3.0 lib/googleauth/token_store.rb
googleauth-1.2.0 lib/googleauth/token_store.rb
googleauth-1.1.3 lib/googleauth/token_store.rb
googleauth-1.1.2 lib/googleauth/token_store.rb
googleauth-1.1.1 lib/googleauth/token_store.rb
googleauth-1.1.0 lib/googleauth/token_store.rb
googleauth-1.0.0 lib/googleauth/token_store.rb