Class: CoreLibrary::And
- Defined in:
- lib/apimatic-core/authentication/multiple/and_auth_group.rb
Overview
The class to handle the AND combination of multiple authentications.
Instance Attribute Summary
Attributes inherited from AuthGroup
#auth_participants, #error_messages, #is_valid_group, #mapped_group
Instance Method Summary collapse
-
#error_message ⇒ String
Getter for the error message for auth.
-
#initialize(*auth_group) ⇒ And
constructor
Initializes a new instance of And.
-
#valid ⇒ Boolean
Checks if the associated auth is valid.
Methods inherited from AuthGroup
Constructor Details
#initialize(*auth_group) ⇒ And
Initializes a new instance of And.
12 13 14 15 |
# File 'lib/apimatic-core/authentication/multiple/and_auth_group.rb', line 12 def initialize(*auth_group) super auth_group @is_valid_group = true end |
Instance Method Details
#error_message ⇒ String
Getter for the error message for auth.
6 7 8 |
# File 'lib/apimatic-core/authentication/multiple/and_auth_group.rb', line 6 def @error_messages.join(' and ') end |
#valid ⇒ Boolean
Checks if the associated auth is valid.
19 20 21 22 23 24 25 26 27 28 |
# File 'lib/apimatic-core/authentication/multiple/and_auth_group.rb', line 19 def valid @mapped_group.each do |participant| unless participant.valid @error_messages.append(participant.) @is_valid_group = false end end @is_valid_group end |