Class: OIDCProvider::Client

Inherits:
Object
  • Object
show all
Defined in:
lib/oidc_provider/client.rb,
lib/oidc_provider/client/builder.rb

Defined Under Namespace

Classes: Builder

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options = {}) ⇒ Client

Returns a new instance of Client.


5
6
7
8
9
10
# File 'lib/oidc_provider/client.rb', line 5

def initialize(options = {})
  @identifier = options[:identifier]
  @secret = options[:secret]
  @redirect_uri = options[:redirect_uri]
  @name = options[:name]
end

Instance Attribute Details

#identifierObject

Returns the value of attribute identifier.


3
4
5
# File 'lib/oidc_provider/client.rb', line 3

def identifier
  @identifier
end

#nameObject

Returns the value of attribute name.


3
4
5
# File 'lib/oidc_provider/client.rb', line 3

def name
  @name
end

#redirect_uriObject

Returns the value of attribute redirect_uri.


3
4
5
# File 'lib/oidc_provider/client.rb', line 3

def redirect_uri
  @redirect_uri
end

#secretObject

Returns the value of attribute secret.


3
4
5
# File 'lib/oidc_provider/client.rb', line 3

def secret
  @secret
end