Class: BpmManager::Configuration

Inherits:
Object
  • Object
show all
Defined in:
lib/bpm_manager.rb

Overview

Defines the Configuration for the gem

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfiguration

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_passwordObject

Returns the value of attribute bpm_password.



12
13
14
# File 'lib/bpm_manager.rb', line 12

def bpm_password
  @bpm_password
end

#bpm_urlObject

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_sslObject

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_usernameObject

Returns the value of attribute bpm_username.



12
13
14
# File 'lib/bpm_manager.rb', line 12

def bpm_username
  @bpm_username
end

#bpm_vendorObject

Returns the value of attribute bpm_vendor.



12
13
14
# File 'lib/bpm_manager.rb', line 12

def bpm_vendor
  @bpm_vendor
end