class Optimizely::ProxyConfig

Attributes

host[R]
password[R]
port[R]
username[R]

Public Class Methods

new(host, port = nil, username = nil, password = nil) click to toggle source
# File lib/optimizely/config/proxy_config.rb, line 23
def initialize(host, port = nil, username = nil, password = nil)
  # host - DNS name or IP address of proxy
  # port - port to use to acess the proxy
  # username - username if authorization is required
  # password - password if authorization is required
  @host = host
  @port = port
  @username = username
  @password = password
end