1 | <?php |
||
17 | abstract class AbstractProfileBuilder implements ProfileBuilderInterface |
||
18 | { |
||
19 | /** @var BuildContainerInterface */ |
||
20 | protected $container; |
||
21 | |||
22 | /** |
||
23 | * @param BuildContainerInterface $buildContainer |
||
24 | */ |
||
25 | 3 | public function __construct(BuildContainerInterface $buildContainer) |
|
29 | |||
30 | /** |
||
31 | * @return \LightSaml\Action\CompositeAction |
||
32 | */ |
||
33 | 3 | public function buildAction() |
|
37 | |||
38 | /** |
||
39 | * @return \LightSaml\Context\Profile\ProfileContext |
||
40 | */ |
||
41 | 3 | public function buildContext() |
|
53 | |||
54 | /** |
||
55 | * @return string |
||
56 | */ |
||
57 | abstract protected function getProfileId(); |
||
58 | |||
59 | /** |
||
60 | * @return string |
||
61 | */ |
||
62 | abstract protected function getProfileRole(); |
||
63 | |||
64 | /** |
||
65 | * @return \LightSaml\Builder\Action\ActionBuilderInterface |
||
66 | */ |
||
67 | abstract protected function getActionBuilder(); |
||
68 | } |
||
69 |