Module: SamlIdp::Controller
- Included in:
- IdpController
- Defined in:
- lib/saml_idp/controller.rb
Instance Attribute Summary collapse
-
#algorithm ⇒ Object
Returns the value of attribute algorithm.
-
#saml_acs_url ⇒ Object
Returns the value of attribute saml_acs_url.
-
#secret_key ⇒ Object
Returns the value of attribute secret_key.
-
#x509_certificate ⇒ Object
Returns the value of attribute x509_certificate.
Instance Method Summary collapse
Instance Attribute Details
#algorithm ⇒ Object
Returns the value of attribute algorithm.
9 10 11 |
# File 'lib/saml_idp/controller.rb', line 9 def algorithm @algorithm end |
#saml_acs_url ⇒ Object
Returns the value of attribute saml_acs_url.
10 11 12 |
# File 'lib/saml_idp/controller.rb', line 10 def saml_acs_url @saml_acs_url end |
#secret_key ⇒ Object
Returns the value of attribute secret_key.
9 10 11 |
# File 'lib/saml_idp/controller.rb', line 9 def secret_key @secret_key end |
#x509_certificate ⇒ Object
Returns the value of attribute x509_certificate.
9 10 11 |
# File 'lib/saml_idp/controller.rb', line 9 def x509_certificate @x509_certificate end |
Instance Method Details
#algorithm_name ⇒ Object
42 43 44 |
# File 'lib/saml_idp/controller.rb', line 42 def algorithm_name algorithm.to_s.split('::').last.downcase end |