host = $host; $this->port = $port; $this->scheme = $scheme; $this->username = $username; $this->password = $password; $this->domain = $domain; $this->workstation = $workstation; } /** * @return string */ public function getHost() { return $this->host; } /** * @param string $host * @return ProxyConfig */ public function setHost($host) { $this->host = $host; return $this; } /** * @return int */ public function getPort() { return $this->port; } /** * @param int $port * @return ProxyConfig */ public function setPort($port) { $this->port = $port; return $this; } /** * @return string */ public function getScheme() { return $this->scheme; } /** * @param string $scheme * @return ProxyConfig */ public function setScheme($scheme) { $this->scheme = $scheme; return $this; } /** * @return string */ public function getUsername() { return $this->username; } /** * @param string $username * @return ProxyConfig */ public function setUsername($username) { $this->username = $username; return $this; } /** * @return string */ public function getPassword() { return $this->password; } /** * @param string $password * @return ProxyConfig */ public function setPassword($password) { $this->password = $password; return $this; } /** * @return string */ public function getDomain() { return $this->domain; } /** * @param string $domain * @return ProxyConfig */ public function setDomain($domain) { $this->domain = $domain; return $this; } /** * @return string */ public function getWorkstation() { return $this->workstation; } /** * @param string $workstation * @return ProxyConfig */ public function setWorkstation($workstation) { $this->workstation = $workstation; return $this; } }