Class: Saml::Kit::Builders::EncryptedAssertion
- Inherits:
-
Object
- Object
- Saml::Kit::Builders::EncryptedAssertion
- Extended by:
- Forwardable
- Includes:
- XmlTemplatable
- Defined in:
- lib/saml/kit/builders/encrypted_assertion.rb
Overview
Instance Attribute Summary collapse
-
#assertion ⇒ Object
readonly
Returns the value of attribute assertion.
Instance Method Summary collapse
-
#initialize(response_builder, assertion) ⇒ EncryptedAssertion
constructor
A new instance of EncryptedAssertion.
Methods included from XmlTemplatable
#digest_method, #sign?, #signature_method, #signing_key_pair, #template_path
Constructor Details
#initialize(response_builder, assertion) ⇒ EncryptedAssertion
Returns a new instance of EncryptedAssertion.
12 13 14 15 16 |
# File 'lib/saml/kit/builders/encrypted_assertion.rb', line 12 def initialize(response_builder, assertion) @response_builder = response_builder @assertion = assertion @encrypt = true end |
Instance Attribute Details
#assertion ⇒ Object (readonly)
Returns the value of attribute assertion.
9 10 11 |
# File 'lib/saml/kit/builders/encrypted_assertion.rb', line 9 def assertion @assertion end |