Class: QuickbaseRecord::Configuration

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfiguration

Returns a new instance of Configuration.



5
6
7
8
9
10
11
# File 'lib/quickbase_record/configuration.rb', line 5

def initialize
  @realm = ''
  @username = ''
  @password = ''
  @token = ''
  @usertoken = ''
end

Instance Attribute Details

#passwordObject

Returns the value of attribute password.



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

def password
  @password
end

#realmObject

Returns the value of attribute realm.



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

def realm
  @realm
end

#tokenObject

Returns the value of attribute token.



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

def token
  @token
end

#usernameObject

Returns the value of attribute username.



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

def username
  @username
end

#usertokenObject

Returns the value of attribute usertoken.



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

def usertoken
  @usertoken
end