Class: RoadForest::Authorization::AuthenticationChain::Scheme
Direct Known Subclasses
Basic
Class Method Summary
collapse
Instance Method Summary
collapse
extended, get, register, registry
Class Method Details
.register(name) ⇒ Object
105
106
107
|
# File 'lib/roadforest/authorization.rb', line 105
def self.register(name)
registrar.registry.add(name, self.new)
end
|
.registry_purpose ⇒ Object
102
|
# File 'lib/roadforest/authorization.rb', line 102
def self.registry_purpose; "authentication scheme"; end
|
Instance Method Details
#authenticated_entity(credentials, store) ⇒ Object
109
110
111
|
# File 'lib/roadforest/authorization.rb', line 109
def authenticated_entity(credentials, store)
nil
end
|