Class: Saml::ProviderStores::File::Provider
- Inherits:
-
Object
- Object
- Saml::ProviderStores::File::Provider
- Includes:
- Saml::Provider
- Defined in:
- lib/saml/provider_stores/file.rb
Instance Attribute Summary collapse
-
#entity_descriptor ⇒ Object
Returns the value of attribute entity_descriptor.
-
#private_key ⇒ Object
Returns the value of attribute private_key.
-
#type ⇒ Object
Returns the value of attribute type.
Instance Method Summary collapse
-
#initialize(entity_descriptor, private_key, type) ⇒ Provider
constructor
A new instance of Provider.
Methods included from Saml::Provider
#artifact_resolution_service_url, #assertion_consumer_service_url, #authn_requests_signed?, #certificate, #entity_id, #sign, #single_logout_service_url, #single_sign_on_service_url, #verify
Constructor Details
#initialize(entity_descriptor, private_key, type) ⇒ Provider
Returns a new instance of Provider.
8 9 10 11 12 |
# File 'lib/saml/provider_stores/file.rb', line 8 def initialize(entity_descriptor, private_key, type) @entity_descriptor = entity_descriptor @private_key = private_key @type = type end |
Instance Attribute Details
#entity_descriptor ⇒ Object
Returns the value of attribute entity_descriptor.
6 7 8 |
# File 'lib/saml/provider_stores/file.rb', line 6 def entity_descriptor @entity_descriptor end |
#private_key ⇒ Object
Returns the value of attribute private_key.
6 7 8 |
# File 'lib/saml/provider_stores/file.rb', line 6 def private_key @private_key end |
#type ⇒ Object
Returns the value of attribute type.
6 7 8 |
# File 'lib/saml/provider_stores/file.rb', line 6 def type @type end |