Class: Saml::Elements::Subject
- Inherits:
-
Object
- Object
- Saml::Elements::Subject
- Includes:
- Base
- Defined in:
- lib/saml/elements/subject.rb
Instance Method Summary collapse
-
#initialize(*args) ⇒ Subject
constructor
A new instance of Subject.
- #name_id ⇒ Object
- #name_id=(value) ⇒ Object
- #name_id_format ⇒ Object
Constructor Details
#initialize(*args) ⇒ Subject
Returns a new instance of Subject.
16 17 18 19 20 21 22 23 |
# File 'lib/saml/elements/subject.rb', line 16 def initialize(*args) = args. @_name_id = Saml::Elements::NameId.new(format: .delete(:name_id_format), value: .delete(:name_id)) @subject_confirmation = Saml::Elements::SubjectConfirmation.new(recipient: .delete(:recipient), in_response_to: .delete(:in_response_to)) super(*(args << )) end |
Instance Method Details
#name_id ⇒ Object
25 26 27 |
# File 'lib/saml/elements/subject.rb', line 25 def name_id @_name_id.value end |
#name_id=(value) ⇒ Object
29 30 31 |
# File 'lib/saml/elements/subject.rb', line 29 def name_id=(value) @_name_id.value = value end |
#name_id_format ⇒ Object
33 34 35 |
# File 'lib/saml/elements/subject.rb', line 33 def name_id_format @_name_id.format end |