ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilWebServicesSetupConfig.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
5 /* Copyright (c) 2020 Daniel Weise <daniel.weise@concepts-and-training.de> Extended GPL, see docs/LICENSE */
6 
7 use ILIAS\Setup;
8 
9 class ilWebServicesSetupConfig implements Setup\Config
10 {
11  protected bool $soap_user_administration;
12  protected string $soap_wsdl_path;
13  protected int $soap_connect_timeout;
14  protected string $rpc_server_host;
15  protected int $rpc_server_port;
16 
21 
22  public function __construct(
23  bool $soap_user_administration,
24  string $soap_wsdl_path,
25  int $soap_connect_timeout,
27  string $rpc_server_host,
28  int $rpc_server_port
29  ) {
30  $this->soap_user_administration = $soap_user_administration;
31  $this->soap_wsdl_path = $soap_wsdl_path;
32  $this->soap_connect_timeout = $soap_connect_timeout;
33  $this->rpc_server_host = $rpc_server_host;
34  $this->rpc_server_port = $rpc_server_port;
35  $this->soap_response_timeout = $soap_response_timeout;
36  }
37 
38  public function isSOAPUserAdministration(): bool
39  {
41  }
42 
43  public function getSOAPWsdlPath(): string
44  {
45  return $this->soap_wsdl_path;
46  }
47 
48  public function getSOAPConnectTimeout(): int
49  {
51  }
52 
53  public function getRPCServerHost(): string
54  {
56  }
57 
58  public function getRPCServerPort(): int
59  {
61  }
62 
63  public function getSoapResponseTimeout(): int
64  {
66  }
67 }
__construct(bool $soap_user_administration, string $soap_wsdl_path, int $soap_connect_timeout, int $soap_response_timeout, string $rpc_server_host, int $rpc_server_port)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...