class SAML::Core::AuthnStatement
Attributes
authn_context[R]
authn_instant[R]
session_index[R]
session_not_on_or_after[R]
Public Class Methods
from_xml(xml)
click to toggle source
# File lib/saml/core/authn_statement.rb, line 11 def self.from_xml(xml); new.from_xml(xml); end
Public Instance Methods
from_xml(xml)
click to toggle source
# File lib/saml/core/authn_statement.rb, line 13 def from_xml(xml) @authn_instant = xml.attributes['AuthnInstant'] @session_not_on_or_after = xml.attributes['SessionNotOnOrAfter'] @session_index = xml.attributes['SessionIndex'] self end