2020-02-09 23:02:19 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Objects;
|
|
|
|
|
|
|
|
class ConnectionData {
|
|
|
|
|
|
|
|
private $host;
|
|
|
|
private $port;
|
|
|
|
private $login;
|
|
|
|
private $password;
|
|
|
|
private $properties;
|
|
|
|
|
|
|
|
public function __construct($host, $port, $login, $password) {
|
|
|
|
$this->host = $host;
|
|
|
|
$this->port = $port;
|
|
|
|
$this->login = $login;
|
|
|
|
$this->password = $password;
|
|
|
|
$this->properties = array();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getProperties() {
|
|
|
|
return $this->properties;
|
|
|
|
}
|
|
|
|
|
2020-04-02 01:48:46 +02:00
|
|
|
public function getProperty($key, $defaultValue='') {
|
|
|
|
return $this->properties[$key] ?? $defaultValue;
|
2020-02-09 23:02:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function setProperty($key, $val) {
|
|
|
|
if(!is_string($val)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->properties[$key] = $val;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getHost() { return $this->host; }
|
|
|
|
public function getPort() { return $this->port; }
|
|
|
|
public function getLogin() { return $this->login; }
|
|
|
|
public function getPassword() { return $this->password; }
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|