Class: DotNetServices::Authentication::Anonymous
- Inherits:
-
Object
- Object
- DotNetServices::Authentication::Anonymous
- Defined in:
- lib/dot_net_services/authentication.rb
Overview
An anonymous authenticator. It is used as a stand-in for services which do not require authentication.
Instance Method Summary collapse
- #==(another) ⇒ Object (also: #eql?)
-
#authenticate ⇒ Object
:nodoc:.
- #enhance(request) ⇒ Object
- #hash ⇒ Object
Instance Method Details
#==(another) ⇒ Object Also known as: eql?
117 |
# File 'lib/dot_net_services/authentication.rb', line 117 def ==(another) another.is_a?(Anonymous) end |
#authenticate ⇒ Object
:nodoc:
115 |
# File 'lib/dot_net_services/authentication.rb', line 115 def authenticate() end |
#enhance(request) ⇒ Object
116 |
# File 'lib/dot_net_services/authentication.rb', line 116 def enhance(request) end |
#hash ⇒ Object
119 |
# File 'lib/dot_net_services/authentication.rb', line 119 def hash() -1 end |