1 | <?php |
||
23 | class ProveGssfPossessionCommand extends AbstractCommand |
||
24 | { |
||
25 | /** |
||
26 | * @var string the UUID of the identity |
||
27 | */ |
||
28 | public $identityId; |
||
29 | |||
30 | /** |
||
31 | * @var string the UUID of the second factor |
||
32 | */ |
||
33 | public $secondFactorId; |
||
34 | |||
35 | /** |
||
36 | * @var string the name of the stepup provider |
||
37 | */ |
||
38 | public $stepupProvider; |
||
39 | |||
40 | /** |
||
41 | * @var string the NameID of the second factor as providerd by the stepup provider |
||
42 | */ |
||
43 | public $gssfId; |
||
44 | |||
45 | /** |
||
46 | * @return array |
||
47 | */ |
||
48 | public function serialise() |
||
57 | } |
||
58 |