Class: SamlIdp::LogoutResponseBuilder
- Inherits:
-
LogoutBuilder
- Object
- LogoutBuilder
- SamlIdp::LogoutResponseBuilder
- Defined in:
- lib/saml_idp/logout_response_builder.rb
Instance Attribute Summary collapse
-
#saml_request_id ⇒ Object
Returns the value of attribute saml_request_id.
Attributes inherited from LogoutBuilder
#algorithm, #issuer_uri, #response_id, #saml_slo_url
Instance Method Summary collapse
-
#initialize(response_id, issuer_uri, saml_slo_url, saml_request_id, algorithm) ⇒ LogoutResponseBuilder
constructor
A new instance of LogoutResponseBuilder.
Methods inherited from LogoutBuilder
Methods included from Signable
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_id ⇒ Object
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 |