Class: SamlIdp::LogoutResponseBuilder

Inherits:
LogoutBuilder show all
Defined in:
lib/saml_idp/logout_response_builder.rb

Instance Attribute Summary collapse

Attributes inherited from LogoutBuilder

#algorithm, #issuer_uri, #response_id, #saml_slo_url

Instance Method Summary collapse

Methods inherited from LogoutBuilder

#encoded, #raw, #reference_id

Methods included from Signable

included, #sign, #signed

Constructor Details

#initialize(response_id, issuer_uri, saml_slo_url, saml_request_id, algorithm) ⇒ LogoutResponseBuilder

Returns a new instance of LogoutResponseBuilder.



6
7
8
9
# File 'lib/saml_idp/logout_response_builder.rb', line 6

def initialize(response_id, issuer_uri, saml_slo_url, saml_request_id, algorithm)
  super(response_id, issuer_uri, saml_slo_url, algorithm)
  self.saml_request_id = saml_request_id
end

Instance Attribute Details

#saml_request_idObject

Returns the value of attribute saml_request_id.



4
5
6
# File 'lib/saml_idp/logout_response_builder.rb', line 4

def saml_request_id
  @saml_request_id
end