getCertificate() public method

public getCertificate ( ) : string
return string
Example #1
0
 /**
  * Builder configuration validation
  *
  * Checks the current configuration of the Node Builder for errors. This method should be executed before each Node
  * is built.
  *
  * @throws Builder\Exception
  */
 protected function validate()
 {
     // verify we have a host address and port
     if (!$this->config->getHost() || !$this->config->getPort()) {
         throw new Node\Builder\Exception('Node host address and port number are required.');
     }
     if ($this->config->getUser() && $this->config->getCertificate()) {
         throw new Node\Builder\Exception('Connect with password OR certificate authentication, not both.');
     }
     if ($this->config->isAuth() && !$this->config->getCaDirectory() && !$this->config->getCaFile()) {
         throw new Node\Builder\Exception('Certificate authority file is required for authentication.');
     }
 }
Example #2
0
 /**
  * getCertificate
  *
  * @return string
  */
 public function getCertificate()
 {
     return $this->config->getCertificate();
 }