Class: Saml::Elements::Subject

Inherits:
Object
  • Object
show all
Includes:
Base
Defined in:
lib/saml/elements/subject.rb

Instance Method Summary collapse

Constructor Details

#initialize(*args) ⇒ Subject

Returns a new instance of Subject.



18
19
20
21
22
23
24
25
# File 'lib/saml/elements/subject.rb', line 18

def initialize(*args)
  options               = args.extract_options!
  @_name_id             = Saml::Elements::NameId.new(format: options.delete(:name_id_format),
                                                     value:  options.delete(:name_id))
  @subject_confirmations = [Saml::Elements::SubjectConfirmation.new(recipient:      options.delete(:recipient),
                                                                    in_response_to: options.delete(:in_response_to))]
  super(*(args << options))
end

Instance Method Details

#name_idObject



27
28
29
# File 'lib/saml/elements/subject.rb', line 27

def name_id
  @_name_id.value
end

#name_id=(value) ⇒ Object



31
32
33
# File 'lib/saml/elements/subject.rb', line 31

def name_id=(value)
  @_name_id.value = value
end

#name_id_formatObject



35
36
37
# File 'lib/saml/elements/subject.rb', line 35

def name_id_format
  @_name_id.format
end

#subject_confirmationObject



39
40
41
# File 'lib/saml/elements/subject.rb', line 39

def subject_confirmation
  subject_confirmations.first
end

#subject_confirmation=(subject_confirmation) ⇒ Object



43
44
45
# File 'lib/saml/elements/subject.rb', line 43

def subject_confirmation=(subject_confirmation)
  self.subject_confirmations = [subject_confirmation]
end