Sha256: 8a2b112252db2c4a34dcbc34a866e174cd82da709d2f2caf181cda881e27064f
Contents?: true
Size: 601 Bytes
Versions: 3
Compression:
Stored size: 601 Bytes
Contents
module Saml module Kit # This class is used to parse a LogoutResponse SAML document. class LogoutResponse < Document include Respondable def initialize(xml, request_id: nil, configuration: Saml::Kit.configuration) @request_id = request_id super(xml, name: "LogoutResponse", configuration: configuration) end # @deprecated Use {#Saml::Kit::Builders::LogoutResponse} instead of this. Builder = ActiveSupport::Deprecation::DeprecatedConstantProxy.new('Saml::Kit::LogoutResponse::Builder', 'Saml::Kit::Builders::LogoutResponse') end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
saml-kit-0.2.14 | lib/saml/kit/logout_response.rb |
saml-kit-0.2.13 | lib/saml/kit/logout_response.rb |
saml-kit-0.2.12 | lib/saml/kit/logout_response.rb |