1 | <?php |
||
22 | final class MockConfiguration |
||
23 | { |
||
24 | private $identityProviderEntityId; |
||
25 | private $serviceProviderEntityId; |
||
26 | private $publicKeyCertData; |
||
27 | private $privateKeyPem; |
||
28 | private $publicKeyCertDataFile; |
||
29 | private $privateKeyPemFile; |
||
30 | |||
31 | /** |
||
32 | * @param string $identityProviderEntityId |
||
33 | * @param string $serviceProviderEntityId |
||
34 | * @param string $privateKeyPath |
||
35 | * @param string $publicCertPath |
||
36 | */ |
||
37 | public function __construct( |
||
58 | |||
59 | /** |
||
60 | * @return string |
||
61 | */ |
||
62 | public function getIdentityProviderEntityId() |
||
66 | |||
67 | /** |
||
68 | * @return string |
||
69 | */ |
||
70 | public function getIdentityProviderPublicKeyCertData() |
||
74 | |||
75 | /** |
||
76 | * @return string |
||
77 | */ |
||
78 | public function getIdentityProviderGetPrivateKeyPem() |
||
82 | |||
83 | /** |
||
84 | * @return string |
||
85 | */ |
||
86 | public function getServiceProviderEntityId() |
||
90 | |||
91 | /** |
||
92 | * @return string |
||
93 | */ |
||
94 | public function getPublicKeyCertDataFile() |
||
98 | |||
99 | /** |
||
100 | * @return string |
||
101 | */ |
||
102 | public function getPrivateKeyPemFile() |
||
106 | } |
||
107 |