Class: Saml::Response
Instance Method Summary
collapse
#initialize, #success?
#add_signature, #initialize, #provider
Methods included from XMLHelpers
#to_soap, #to_xml
Instance Method Details
#authn_failed? ⇒ Boolean
9
10
11
|
# File 'lib/saml/response.rb', line 9
def authn_failed?
!success? && status.status_code.authn_failed?
end
|
#no_authn_context? ⇒ Boolean
17
18
19
|
# File 'lib/saml/response.rb', line 17
def no_authn_context?
!success? && status.status_code.no_authn_context?
end
|
#request_denied? ⇒ Boolean
13
14
15
|
# File 'lib/saml/response.rb', line 13
def request_denied?
!success? && status.status_code.request_denied?
end
|