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.



15
16
17
18
19
20
21
# File 'lib/bpm_manager.rb', line 15

def initialize
  @bpm_url = ""
  @bpm_url_suffix = ""
  @bpm_username = ""
  @bpm_password = ""
  @bpm_use_ssl = false
end

Instance Attribute Details

#bpm_passwordObject

Returns the value of attribute bpm_password.



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

def bpm_password
  @bpm_password
end

#bpm_urlObject

Returns the value of attribute bpm_url.



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

def bpm_url
  @bpm_url
end

#bpm_url_suffixObject

Returns the value of attribute bpm_url_suffix.



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

def bpm_url_suffix
  @bpm_url_suffix
end

#bpm_use_sslObject

Returns the value of attribute bpm_use_ssl.



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

def bpm_use_ssl
  @bpm_use_ssl
end

#bpm_usernameObject

Returns the value of attribute bpm_username.



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

def bpm_username
  @bpm_username
end