Method: OneLogin::KlRubySaml::SloLogoutrequest#issuer

Defined in:
lib/onelogin/kl-ruby-saml/slo_logoutrequest.rb

#issuerString

Returns Gets the Issuer from the Logout Request.

Returns:

  • (String)

    Gets the Issuer from the Logout Request.



89
90
91
92
93
94
95
96
97
98
# File 'lib/onelogin/kl-ruby-saml/slo_logoutrequest.rb', line 89

def issuer
  @issuer ||= begin
    node = REXML::XPath.first(
      document,
      "/p:LogoutRequest/a:Issuer",
      { "p" => PROTOCOL, "a" => ASSERTION }
    )
    node.nil? ? nil : node.text
  end
end