Class: Saml::BasicProvider
- Inherits:
- 
      Object
      
        - Object
- Saml::BasicProvider
 
- Includes:
- Provider
- Defined in:
- lib/saml/basic_provider.rb
Instance Attribute Summary collapse
- 
  
    
      #encryption_key  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Returns the value of attribute encryption_key. 
- 
  
    
      #entity_descriptor  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Returns the value of attribute entity_descriptor. 
- 
  
    
      #type  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Returns the value of attribute type. 
Instance Method Summary collapse
- 
  
    
      #initialize(entity_descriptor, encryption_key, type, signing_key = nil)  ⇒ BasicProvider 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of BasicProvider. 
Methods included from Provider
#artifact_resolution_service_url, #assertion_consumer_service, #assertion_consumer_service_indices, #assertion_consumer_service_url, #attribute_consuming_service, #attribute_service_url, #authn_requests_signed?, #certificate, #entity_id, #find_key_descriptor, #find_key_descriptors_by_use, #sign, #signing_key, #single_logout_service_url, #single_sign_on_service_url, #verify
Constructor Details
#initialize(entity_descriptor, encryption_key, type, signing_key = nil) ⇒ BasicProvider
Returns a new instance of BasicProvider.
| 6 7 8 9 10 11 | # File 'lib/saml/basic_provider.rb', line 6 def initialize(entity_descriptor, encryption_key, type, signing_key=nil) @entity_descriptor = entity_descriptor @encryption_key = encryption_key @type = type @signing_key = signing_key end | 
Instance Attribute Details
#encryption_key ⇒ Object
Returns the value of attribute encryption_key.
| 4 5 6 | # File 'lib/saml/basic_provider.rb', line 4 def encryption_key @encryption_key end | 
#entity_descriptor ⇒ Object
Returns the value of attribute entity_descriptor.
| 4 5 6 | # File 'lib/saml/basic_provider.rb', line 4 def entity_descriptor @entity_descriptor end | 
#type ⇒ Object
Returns the value of attribute type.
| 4 5 6 | # File 'lib/saml/basic_provider.rb', line 4 def type @type end |