Class | CASServer::Authenticators::OpenID |
In: |
lib/casserver/authenticators/open_id.rb
|
Parent: | CASServer::Authenticators::Base |
CURRENTLY UNIMPLEMENTED This is just starter code.
# File lib/casserver/authenticators/open_id.rb, line 13 13: def validate(credentials) 14: raise NotImplementedError, "The OpenID authenticator is not yet implemented. "+ 15: "See http://code.google.com/p/rubycas-server/issues/detail?id=36 if you are interested in helping this along." 16: 17: read_standard_credentials(credentials) 18: 19: store = OpenID::Store::Memory.new 20: consumer = OpenID::Consumer.new({}, store) 21: end