class Saml::Elements::SubjectConfirmation
Public Class Methods
new(*args)
click to toggle source
Calls superclass method
# File lib/saml/elements/subject_confirmation.rb, line 20 def initialize(*args) options = args.extract_options! @subject_confirmation_data = Saml::Elements::SubjectConfirmationData.new(recipient: options.delete(:recipient), in_response_to: options.delete(:in_response_to)) super(*(args << options)) @_method ||= Methods::BEARER end