Esempio n. 1
0
 /** @brief Constructs new search connector.
  *
  * All parameter values should have been provided by Antidot.
  *
  * @param $host [in] server hosting the required service.
  * @param $service [in] Antidot service (see @a AfsService).
  * @param $scheme [in] Scheme for the connection URL see
  *        @ref uri_scheme (default: @a AFS_SCHEME_HTTP).
  *
  * @exception InvalidArgumentException invalid scheme parameter provided.
  */
 public function __construct($host, AfsService $service, $scheme = AFS_SCHEME_HTTP, SAI_CurlInterface $curlConnector = null)
 {
     parent::__construct($host, $service, $scheme, $curlConnector);
     if ($scheme != AFS_SCHEME_HTTP) {
         throw new InvalidArgumentException('Search connector support only HTTP connection');
     }
 }
Esempio n. 2
0
 public function __construct($host, AfsService $service, $scheme = AFS_SCHEME_HTTP)
 {
     parent::__construct($host, $service, $scheme);
     if ($scheme != AFS_SCHEME_HTTP) {
         throw InvalidArgumentException('ACP connector support only HTTP connection');
     }
     $this->build_reply_as_associative_array();
 }