class Adp::Connection::ConnectionConfiguration

Attributes

accessScope[RW]
apiRequestURL[RW]
clientID[RW]
clientSecret[RW]
grantType[RW]
sslCaPath[RW]
sslCertPath[RW]
sslKeyPass[RW]
sslKeyPath[RW]
tokenServerURL[RW]

Public Class Methods

new( config ) click to toggle source
# File lib/adp/connection_configuration.rb, line 18
def initialize( config )

  self.clientID = config["clientID"]
  self.clientSecret = config["clientSecret"]
  self.sslCertPath = config["sslCertPath"]
  self.sslCaPath = config["sslCaPath"]
  self.sslKeyPath = config["sslKeyPath"]
  self.sslKeyPass = config["sslKeyPass"]
  self.tokenServerURL = config["tokenServerURL"]
  self.apiRequestURL = config["apiRequestURL"]
  self.accessScope = config["accessScope"]
end