Class: SAML::Metadata::SPSSODescriptor
Instance Attribute Summary
#key_descriptors, #protocol_support_enumeration
Class Method Summary
collapse
Instance Method Summary
collapse
#single_logout_services
#signing_key_descriptor
Class Method Details
.from_xml(xml) ⇒ Object
5
|
# File 'lib/saml/metadata/sp_sso_descriptor.rb', line 5
def self.from_xml(xml); new.from_xml(xml); end
|
Instance Method Details
#assertion_consumer_services ⇒ Object
17
18
19
|
# File 'lib/saml/metadata/sp_sso_descriptor.rb', line 17
def assertion_consumer_services
@assertion_consumer_services.clone
end
|
#from_xml(xml) ⇒ Object
7
8
9
10
11
12
13
14
15
|
# File 'lib/saml/metadata/sp_sso_descriptor.rb', line 7
def from_xml(xml)
super(xml)
@assertion_consumer_services = xml.get_elements('md:AssertionConsumerService').map do |elem|
IndexedEndpoint.from_xml(elem)
end
self
end
|