Class: Saml::Elements::SubjectConfirmation
- Inherits:
-
Object
- Object
- Saml::Elements::SubjectConfirmation
- Includes:
- Base
- Defined in:
- lib/saml/elements/subject_confirmation.rb
Defined Under Namespace
Classes: Methods
Instance Method Summary collapse
-
#initialize(*args) ⇒ SubjectConfirmation
constructor
A new instance of SubjectConfirmation.
Constructor Details
#initialize(*args) ⇒ SubjectConfirmation
Returns a new instance of SubjectConfirmation.
21 22 23 24 25 26 27 |
# File 'lib/saml/elements/subject_confirmation.rb', line 21 def initialize(*args) = args. @subject_confirmation_data = Saml::Elements::SubjectConfirmationData.new(:recipient => .delete(:recipient), :in_response_to => .delete(:in_response_to)) super(*(args << )) @_method ||= Methods::BEARER end |