1 | <?php |
||
5 | class BusinessPageReference extends ViewReference |
||
|
|||
6 | { |
||
7 | protected $entityId; |
||
8 | protected $entityNamespace; |
||
9 | protected $templateId; |
||
10 | protected $businessEntity; |
||
11 | |||
12 | /** |
||
13 | * @return mixed |
||
14 | */ |
||
15 | public function getEntityId() |
||
19 | |||
20 | /** |
||
21 | * @param mixed $entityId |
||
22 | */ |
||
23 | public function setEntityId($entityId) |
||
27 | |||
28 | /** |
||
29 | * @deprecated |
||
30 | * |
||
31 | * @return mixed |
||
32 | */ |
||
33 | public function getEntityNamespace() |
||
37 | |||
38 | /** |
||
39 | * @deprecated |
||
40 | * |
||
41 | * @param mixed $entityNamespace |
||
42 | */ |
||
43 | public function setEntityNamespace($entityNamespace) |
||
47 | |||
48 | /** |
||
49 | * @return mixed |
||
50 | */ |
||
51 | public function getTemplateId() |
||
55 | |||
56 | /** |
||
57 | * @param mixed $templateId |
||
58 | */ |
||
59 | public function setTemplateId($templateId) |
||
63 | |||
64 | /** |
||
65 | * @return mixed |
||
66 | */ |
||
67 | public function getBusinessEntity() |
||
71 | |||
72 | /** |
||
73 | * @param mixed $businessEntity |
||
74 | */ |
||
75 | public function setBusinessEntity($businessEntity) |
||
79 | } |
||
80 |