class SAML::Metadata::IndexedEndpoint

Attributes

index[R]
is_default[R]

Public Class Methods

from_xml(xml) click to toggle source
# File lib/saml/metadata/indexed_endpoint.rb, line 8
def self.from_xml(xml); new.from_xml(xml); end

Public Instance Methods

from_xml(xml) click to toggle source
Calls superclass method SAML::Metadata::Endpoint::from_xml
# File lib/saml/metadata/indexed_endpoint.rb, line 10
def from_xml(xml)
  super(xml)
  @index      = xml.attributes['Index']
  @is_default = xml.attributes['IsDefault']
  self
end