Class: SAML2::Endpoint::Array

Inherits:
Array
  • Object
show all
Includes:
ChoiceHelpers
Defined in:
lib/saml2/endpoint.rb

Class Method Summary collapse

Methods included from ChoiceHelpers

#choose_binding, #choose_endpoint

Class Method Details

.from_xml(nodes) ⇒ Object


27
28
29
30
31
# File 'lib/saml2/endpoint.rb', line 27

def self.from_xml(nodes)
  new(nodes.map do |node|
        Endpoint.from_xml(node)
      end).freeze
end