1 | <?php |
||
10 | class FixtureService |
||
11 | { |
||
12 | private $secondFactorRepository; |
||
13 | |||
14 | private $samlEntityRepository; |
||
15 | |||
16 | private $whitelistRepository; |
||
17 | |||
18 | public function __construct( |
||
27 | |||
28 | /** |
||
29 | * @param string $nameId |
||
30 | * @param string $institution |
||
31 | * @return array |
||
32 | * @throws Exception |
||
33 | */ |
||
34 | public function registerYubikeyToken($nameId, $institution) |
||
38 | |||
39 | /** |
||
40 | * @param string $entityId |
||
41 | * @param string $certificate |
||
42 | * @param bool $sfoEnabled |
||
43 | * @return array |
||
44 | * @throws Exception |
||
45 | */ |
||
46 | public function registerSP($entityId, $certificate, $sfoEnabled) |
||
50 | |||
51 | /** |
||
52 | * @param string $institution |
||
53 | * @return array |
||
54 | * @throws Exception |
||
55 | */ |
||
56 | public function whitelist($institution) |
||
60 | } |
||
61 |