ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
interface.ilSamlIdpDiscovery.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22{
27 public function getList(): array;
28
29 public function storeIdpMetadata(int $idpId, string $metadata): void;
30
31 public function fetchIdpMetadata(int $idpId): string;
32
33 public function deleteIdpMetadata(int $idpId): void;
34}
getList()
This method should return an array of IDPs.
fetchIdpMetadata(int $idpId)
deleteIdpMetadata(int $idpId)
storeIdpMetadata(int $idpId, string $metadata)