Class: Casper::Entity::ActionThresholds
- Inherits:
-
Object
- Object
- Casper::Entity::ActionThresholds
- Defined in:
- lib/entity/action_thresholds.rb
Overview
Note:
The minimum weight thresholds that have to be met when executing an action of a certain type.
Instance Method Summary collapse
-
#get_deployment ⇒ Integer
Deployment.
-
#get_key_management ⇒ Integer
Key_management.
-
#initialize(deployment, key_management) ⇒ ActionThresholds
constructor
A new instance of ActionThresholds.
Constructor Details
#initialize(deployment, key_management) ⇒ ActionThresholds
Returns a new instance of ActionThresholds.
9 10 11 12 |
# File 'lib/entity/action_thresholds.rb', line 9 def initialize(deployment, key_management) @deployment = deployment @key_management = key_management end |
Instance Method Details
#get_deployment ⇒ Integer
Returns deployment.
15 16 17 |
# File 'lib/entity/action_thresholds.rb', line 15 def get_deployment @deployment end |
#get_key_management ⇒ Integer
Returns key_management.
20 21 22 |
# File 'lib/entity/action_thresholds.rb', line 20 def get_key_management @key_management end |