class Conjur::API::UnableAuthenticator

When the API is constructed with a token, the token cannot be refreshed.

Public Instance Methods

needs_token_refresh?() click to toggle source
# File lib/conjur/base.rb, line 257
def needs_token_refresh?
  false
end
refresh_token() click to toggle source
# File lib/conjur/base.rb, line 253
def refresh_token
  raise "Unable to re-authenticate using an access token"
end