Class: ValidationFactor
- Inherits:
-
Object
- Object
- ValidationFactor
- Defined in:
- lib/crowd/default.rb
Overview
http://authentication.integration.crowd.atlassian.comValidationFactor
Instance Attribute Summary collapse
-
#name ⇒ Object
Returns the value of attribute name.
-
#value ⇒ Object
Returns the value of attribute value.
Instance Method Summary collapse
-
#initialize(name = nil, value = nil) ⇒ ValidationFactor
constructor
A new instance of ValidationFactor.
Constructor Details
#initialize(name = nil, value = nil) ⇒ ValidationFactor
Returns a new instance of ValidationFactor.
47 48 49 50 |
# File 'lib/crowd/default.rb', line 47 def initialize(name = nil, value = nil) @name = name @value = value end |
Instance Attribute Details
#name ⇒ Object
Returns the value of attribute name.
44 45 46 |
# File 'lib/crowd/default.rb', line 44 def name @name end |
#value ⇒ Object
Returns the value of attribute value.
45 46 47 |
# File 'lib/crowd/default.rb', line 45 def value @value end |