Class: Rack::OAuth2::Server::Token::ClientCredentials

Inherits:
Abstract::Handler show all
Defined in:
lib/rack/oauth2/server/token/client_credentials.rb

Defined Under Namespace

Classes: Request

Instance Attribute Summary

Attributes inherited from Abstract::Handler

#authenticator, #request, #response

Instance Method Summary collapse

Methods inherited from Abstract::Handler

#call, #initialize

Constructor Details

This class inherits a constructor from Rack::OAuth2::Server::Abstract::Handler

Instance Method Details

#_call(env) ⇒ Object



6
7
8
9
10
# File 'lib/rack/oauth2/server/token/client_credentials.rb', line 6

def _call(env)
  @request  = Request.new(env)
  @response = Response.new(request)
  super
end