Class: SAML2::SSO
Direct Known Subclasses
Instance Attribute Summary collapse
-
#name_id_formats ⇒ Object
readonly
Returns the value of attribute name_id_formats.
-
#single_logout_services ⇒ Object
readonly
Returns the value of attribute single_logout_services.
Attributes inherited from Role
Attributes included from OrganizationAndContacts
Instance Method Summary collapse
- #from_xml(node) ⇒ Object
-
#initialize ⇒ SSO
constructor
A new instance of SSO.
Methods inherited from Role
#encryption_keys, #signing_keys
Methods inherited from Base
from_xml, load_object_array, load_string_array, lookup_qname, #to_s, #to_xml
Constructor Details
#initialize ⇒ SSO
Returns a new instance of SSO.
7 8 9 10 11 |
# File 'lib/saml2/sso.rb', line 7 def initialize super @single_logout_services = [] @name_id_formats = [] end |
Instance Attribute Details
#name_id_formats ⇒ Object (readonly)
Returns the value of attribute name_id_formats.
5 6 7 |
# File 'lib/saml2/sso.rb', line 5 def name_id_formats @name_id_formats end |
#single_logout_services ⇒ Object (readonly)
Returns the value of attribute single_logout_services.
5 6 7 |
# File 'lib/saml2/sso.rb', line 5 def single_logout_services @single_logout_services end |
Instance Method Details
#from_xml(node) ⇒ Object
13 14 15 16 17 |
# File 'lib/saml2/sso.rb', line 13 def from_xml(node) super @single_logout_services = nil @name_id_formats = nil end |