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.
7 8 9 |
# File 'lib/saml_idp/controller.rb', line 7 def algorithm @algorithm end |
#saml_acs_url ⇒ Object
Returns the value of attribute saml_acs_url.
8 9 10 |
# File 'lib/saml_idp/controller.rb', line 8 def saml_acs_url @saml_acs_url end |
#secret_key ⇒ Object
Returns the value of attribute secret_key.
7 8 9 |
# File 'lib/saml_idp/controller.rb', line 7 def secret_key @secret_key end |
#x509_certificate ⇒ Object
Returns the value of attribute x509_certificate.
7 8 9 |
# File 'lib/saml_idp/controller.rb', line 7 def x509_certificate @x509_certificate end |
Instance Method Details
#algorithm_name ⇒ Object
40 41 42 |
# File 'lib/saml_idp/controller.rb', line 40 def algorithm_name algorithm.to_s.split('::').last.downcase end |