Class: RoadForest::Authorization::AuthenticationChain::Scheme

Inherits:
Object
  • Object
show all
Extended by:
Utility::ClassRegistry::Registrar
Defined in:
lib/roadforest/authorization/authentication-chain.rb

Direct Known Subclasses

Basic

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Utility::ClassRegistry::Registrar

all_names, extended, get, map_classes, register, registry

Class Method Details

.register(name) ⇒ Object



10
11
12
# File 'lib/roadforest/authorization/authentication-chain.rb', line 10

def self.register(name)
  registrar.registry.add(name, self.new)
end

.registry_purposeObject



7
# File 'lib/roadforest/authorization/authentication-chain.rb', line 7

def self.registry_purpose; "authentication scheme"; end

Instance Method Details

#authenticated_entity(credentials, store) ⇒ Object



14
15
16
# File 'lib/roadforest/authorization/authentication-chain.rb', line 14

def authenticated_entity(credentials, store)
  nil
end