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
Constant Summary
Constants included from XmlTemplatable
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_name, #template_path
Constructor Details
#initialize(response_builder, assertion) ⇒ EncryptedAssertion
Returns a new instance of EncryptedAssertion.
14 15 16 17 18 |
# File 'lib/saml/kit/builders/encrypted_assertion.rb', line 14 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.
11 12 13 |
# File 'lib/saml/kit/builders/encrypted_assertion.rb', line 11 def assertion @assertion end |