Class: Dynamic::Transactions::Injection
- Inherits:
-
KirguduBase::Dynamic::BaseModel
- Object
- KirguduBase::Dynamic::BaseModel
- Dynamic::Transactions::Injection
- Defined in:
- app/models/kirgudu_base/dynamic/transactions/injection.rb
Instance Attribute Summary collapse
-
#action ⇒ Object
action for which inection is applied.
-
#flow_position ⇒ Object
position in action flow.
-
#method ⇒ Object
method to invoke when processing transaction injection.
-
#name ⇒ Object
Returns the value of attribute name.
Instance Method Summary collapse
-
#initialize(options = {}) ⇒ Injection
constructor
A new instance of Injection.
Constructor Details
#initialize(options = {}) ⇒ Injection
Returns a new instance of Injection.
9 10 11 12 13 14 15 16 |
# File 'app/models/kirgudu_base/dynamic/transactions/injection.rb', line 9 def initialize(={}) self.name = nil self.flow_position = nil self.action = nil self.method = nil super() end |
Instance Attribute Details
#action ⇒ Object
action for which inection is applied
20 21 22 |
# File 'app/models/kirgudu_base/dynamic/transactions/injection.rb', line 20 def action @action end |
#flow_position ⇒ Object
position in action flow
19 20 21 |
# File 'app/models/kirgudu_base/dynamic/transactions/injection.rb', line 19 def flow_position @flow_position end |
#method ⇒ Object
method to invoke when processing transaction injection
21 22 23 |
# File 'app/models/kirgudu_base/dynamic/transactions/injection.rb', line 21 def method @method end |
#name ⇒ Object
Returns the value of attribute name.
18 19 20 |
# File 'app/models/kirgudu_base/dynamic/transactions/injection.rb', line 18 def name @name end |