Class: Ehsso::Configuration

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfiguration

Returns a new instance of Configuration.



7
8
9
10
11
# File 'lib/ehsso/configuration.rb', line 7

def initialize
  @module_key = ""
  @base_url = ""
  @username_and_password = nil
end

Instance Attribute Details

#base_urlObject

Returns the value of attribute base_url.



4
5
6
# File 'lib/ehsso/configuration.rb', line 4

def base_url
  @base_url
end

#module_keyObject

Returns the value of attribute module_key.



3
4
5
# File 'lib/ehsso/configuration.rb', line 3

def module_key
  @module_key
end

#username_and_passwordObject

Returns the value of attribute username_and_password.



5
6
7
# File 'lib/ehsso/configuration.rb', line 5

def username_and_password
  @username_and_password
end