Class: BpmManager::Configuration
- Inherits:
-
Object
- Object
- BpmManager::Configuration
- Defined in:
- lib/bpm_manager.rb
Overview
Defines the Configuration for the gem
Instance Attribute Summary collapse
-
#bpm_password ⇒ Object
Returns the value of attribute bpm_password.
-
#bpm_url ⇒ Object
Returns the value of attribute bpm_url.
-
#bpm_use_ssl ⇒ Object
Returns the value of attribute bpm_use_ssl.
-
#bpm_username ⇒ Object
Returns the value of attribute bpm_username.
-
#bpm_vendor ⇒ Object
Returns the value of attribute bpm_vendor.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
14 15 16 17 18 19 20 |
# File 'lib/bpm_manager.rb', line 14 def initialize @bpm_vendor = "" @bpm_url = "" @bpm_username = "" @bpm_password = "" @bpm_use_ssl = false end |
Instance Attribute Details
#bpm_password ⇒ Object
Returns the value of attribute bpm_password.
12 13 14 |
# File 'lib/bpm_manager.rb', line 12 def bpm_password @bpm_password end |
#bpm_url ⇒ Object
Returns the value of attribute bpm_url.
12 13 14 |
# File 'lib/bpm_manager.rb', line 12 def bpm_url @bpm_url end |
#bpm_use_ssl ⇒ Object
Returns the value of attribute bpm_use_ssl.
12 13 14 |
# File 'lib/bpm_manager.rb', line 12 def bpm_use_ssl @bpm_use_ssl end |
#bpm_username ⇒ Object
Returns the value of attribute bpm_username.
12 13 14 |
# File 'lib/bpm_manager.rb', line 12 def bpm_username @bpm_username end |
#bpm_vendor ⇒ Object
Returns the value of attribute bpm_vendor.
12 13 14 |
# File 'lib/bpm_manager.rb', line 12 def bpm_vendor @bpm_vendor end |