1 | <?php |
||
14 | class Configuration extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity |
||
15 | { |
||
16 | |||
17 | /** |
||
18 | * api_key |
||
19 | * |
||
20 | * @db |
||
21 | * @var string |
||
22 | */ |
||
23 | protected $apiKey; |
||
24 | |||
25 | /** |
||
26 | * project_id |
||
27 | * |
||
28 | * @db |
||
29 | * @var string |
||
30 | */ |
||
31 | protected $projectId; |
||
32 | |||
33 | /** |
||
34 | * Returns the project id |
||
35 | * |
||
36 | * @return string |
||
37 | */ |
||
38 | public function getProjectId() |
||
39 | { |
||
40 | return $this->projectId; |
||
41 | } |
||
42 | |||
43 | /** |
||
44 | * Sets the projects id |
||
45 | * |
||
46 | * @param string $projectId |
||
47 | */ |
||
48 | public function setProjectId($projectId) |
||
49 | { |
||
50 | $this->projectId = $projectId; |
||
51 | } |
||
52 | |||
53 | /** |
||
54 | * Returns the api key |
||
55 | * |
||
56 | * @return string |
||
57 | */ |
||
58 | public function getApiKey() |
||
62 | |||
63 | /** |
||
64 | * Sets the api key |
||
65 | * |
||
66 | * @param string $apiKey |
||
67 | */ |
||
68 | public function setApiKey($apiKey) |
||
72 | } |
||
73 |