ILIAS  release_8 Revision v8.24
class.ilWebServicesSetupConfig.php
Go to the documentation of this file.
1<?php
2
3declare(strict_types=1);
4
5/* Copyright (c) 2020 Daniel Weise <daniel.weise@concepts-and-training.de> Extended GPL, see docs/LICENSE */
6
8
10{
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(
24 string $soap_wsdl_path,
27 string $rpc_server_host,
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 {
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)
A configuration for the setup.
Definition: Config.php:27
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...