1 | <?php |
||
21 | class IdentityQuery extends AbstractQuery implements AuthorizationAwareQuery |
||
22 | { |
||
23 | /** |
||
24 | * @var string |
||
25 | */ |
||
26 | public $nameId; |
||
27 | |||
28 | /** |
||
29 | * @var string |
||
30 | */ |
||
31 | public $commonName; |
||
32 | |||
33 | /** |
||
34 | * @var string|\Surfnet\Stepup\Identity\Value\Institution |
||
35 | */ |
||
36 | public $institution; |
||
37 | |||
38 | /** |
||
39 | * @var string |
||
40 | */ |
||
41 | public $email; |
||
42 | |||
43 | /** |
||
44 | * @var InstitutionAuthorizationContext|null |
||
45 | */ |
||
46 | public $authorizationContext; |
||
47 | |||
48 | /** |
||
49 | * @return bool |
||
50 | */ |
||
51 | public function hasAuthorizationContext() |
||
55 | } |
||
56 |