Class: SAML2::SSO

Inherits:
Role show all
Defined in:
lib/saml2/sso.rb

Direct Known Subclasses

IdentityProvider, ServiceProvider

Instance Attribute Summary

Attributes inherited from Role

#keys, #supported_protocols

Attributes included from OrganizationAndContacts

#contacts, #organization

Attributes inherited from Base

#xml

Instance Method Summary collapse

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

#initializeSSO

Returns a new instance of SSO.



5
6
7
8
9
# File 'lib/saml2/sso.rb', line 5

def initialize
  super
  @single_logout_services = []
  @name_id_formats = []
end

Instance Method Details

#from_xml(node) ⇒ Object



11
12
13
14
15
# File 'lib/saml2/sso.rb', line 11

def from_xml(node)
  super
  @single_logout_services = nil
  @name_id_formats = nil
end

#name_id_formatsObject



21
22
23
# File 'lib/saml2/sso.rb', line 21

def name_id_formats
  @name_id_formats ||= load_string_array(xml, 'md:NameIDFormat')
end

#single_logout_servicesObject



17
18
19
# File 'lib/saml2/sso.rb', line 17

def single_logout_services
  @single_logout_services ||= load_object_array(xml, 'md:SingleLogoutService', Endpoint)
end