Class: ApplicationAuthenticationContext
- Inherits:
-
Object
- Object
- ApplicationAuthenticationContext
- Defined in:
- lib/crowd/default.rb
Overview
http://authentication.integration.crowd.atlassian.comApplicationAuthenticationContext
Instance Attribute Summary collapse
-
#credential ⇒ Object
Returns the value of attribute credential.
-
#name ⇒ Object
Returns the value of attribute name.
-
#validationFactors ⇒ Object
Returns the value of attribute validationFactors.
Instance Method Summary collapse
-
#initialize(credential = nil, name = nil, validationFactors = nil) ⇒ ApplicationAuthenticationContext
constructor
A new instance of ApplicationAuthenticationContext.
Constructor Details
#initialize(credential = nil, name = nil, validationFactors = nil) ⇒ ApplicationAuthenticationContext
Returns a new instance of ApplicationAuthenticationContext.
20 21 22 23 24 |
# File 'lib/crowd/default.rb', line 20 def initialize(credential = nil, name = nil, validationFactors = nil) @credential = credential @name = name @validationFactors = validationFactors end |
Instance Attribute Details
#credential ⇒ Object
Returns the value of attribute credential.
16 17 18 |
# File 'lib/crowd/default.rb', line 16 def credential @credential end |
#name ⇒ Object
Returns the value of attribute name.
17 18 19 |
# File 'lib/crowd/default.rb', line 17 def name @name end |
#validationFactors ⇒ Object
Returns the value of attribute validationFactors.
18 19 20 |
# File 'lib/crowd/default.rb', line 18 def validationFactors @validationFactors end |