Class: Wampproto::Auth::Anonymous

Inherits:
Base
  • Object
show all
Defined in:
lib/wampproto/auth/anonymous.rb

Overview

anonymous authentication

Constant Summary collapse

AUTH_METHOD =
"anonymous"

Instance Attribute Summary

Attributes inherited from Base

#authextra, #authid, #authmethod

Instance Method Summary collapse

Methods inherited from Base

#authenticate

Constructor Details

#initialize(authid = "", authextra = {}) ⇒ Anonymous

Returns a new instance of Anonymous.



9
10
11
# File 'lib/wampproto/auth/anonymous.rb', line 9

def initialize(authid = "", authextra = {})
  super(AUTH_METHOD, authid, authextra)
end