1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282
<?php
namespace Basho\Riak\Node;
/**
* Configuration data structure object for connecting to a Riak node.
*
* @author Christopher Mancini <cmancini at basho d0t com>
*/
class Config
{
/**
* Host address
*
* @var string
*/
protected $host = '';
/**
* Port number
*
* @var int
*/
protected $port = 0;
/**
* User name
*
* @var string
*/
protected $user = '';
/**
* User password
*
* @var string
*/
protected $pass = '';
/**
* Client / user authentication flag
*
* If true, client will use HTTPS (TLS1.2) to connect to Riak node
*
* @var bool
*/
protected $auth = false;
protected $ca_file = '';
/**
* [short description]
*
* @var string
*/
protected $ca_directory = '';
/**
* Certificate to authenticate to Riak with
*
* @var string
*/
protected $certificate = '';
/**
* Certificate to authenticate to Riak with
*
* @var string
*/
protected $certificate_password = '';
/**
* [short description]
*
* @var string
*/
protected $private_key = '';
/**
* [short description]
*
* @var string
*/
protected $private_key_password = '';
/**
* Client side connection timeout
*
* @var int
*/
protected $connection_timeout = 10;
/**
* @return int
*/
public function getConnectionTimeout()
{
return $this->connection_timeout;
}
/**
* @param int $connection_timeout
*/
public function setConnectionTimeout($connection_timeout)
{
$this->connection_timeout = $connection_timeout;
}
/**
* @return string
*/
public function getCaFile()
{
return $this->ca_file;
}
/**
* @param string $ca_file
*/
public function setCaFile($ca_file)
{
$this->ca_file = $ca_file;
}
/**
* @return string
*/
public function getCaDirectory()
{
return $this->ca_directory;
}
/**
* @param string $ca_directory
*/
public function setCaDirectory($ca_directory)
{
$this->ca_directory = $ca_directory;
}
/**
* @return string
*/
public function getCertificatePassword()
{
return $this->certificate_password;
}
/**
* @param string $certificate_password
*/
public function setCertificatePassword($certificate_password)
{
$this->certificate_password = $certificate_password;
}
/**
* @return string
*/
public function getPrivateKey()
{
return $this->private_key;
}
/**
* @param string $private_key
*/
public function setPrivateKey($private_key)
{
$this->private_key = $private_key;
}
/**
* @return string
*/
public function getPrivateKeyPassword()
{
return $this->private_key_password;
}
/**
* @param string $private_key_password
*/
public function setPrivateKeyPassword($private_key_password)
{
$this->private_key_password = $private_key_password;
}
/**
* @return string
*/
public function getCertificate()
{
return $this->certificate;
}
/**
* @param string $certificate
*/
public function setCertificate($certificate)
{
$this->certificate = $certificate;
}
/**
* @return boolean
*/
public function isAuth()
{
return $this->auth;
}
/**
* @param boolean $auth
*/
public function setAuth($auth)
{
$this->auth = $auth;
}
/**
* @return string
*/
public function getHost()
{
return $this->host;
}
/**
* @param string $host
*/
public function setHost($host)
{
$this->host = $host;
}
/**
* @return string
*/
public function getPass()
{
return $this->pass;
}
/**
* @param string $pass
*/
public function setPass($pass)
{
$this->pass = $pass;
}
/**
* @return int
*/
public function getPort()
{
return $this->port;
}
/**
* @param int $port
*/
public function setPort($port)
{
$this->port = $port;
}
/**
* @return string
*/
public function getUser()
{
return $this->user;
}
/**
* @param string $user
*/
public function setUser($user)
{
$this->user = $user;
}
}