Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
ConsumerService | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
getRootClass | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 |
1 | <?php |
2 | |
3 | /** |
4 | * This program is free software; you can redistribute it and/or |
5 | * modify it under the terms of the GNU General Public License |
6 | * as published by the Free Software Foundation; under version 2 |
7 | * of the License (non-upgradable). |
8 | * |
9 | * This program is distributed in the hope that it will be useful, |
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
12 | * GNU General Public License for more details. |
13 | * |
14 | * You should have received a copy of the GNU General Public License |
15 | * along with this program; if not, write to the Free Software |
16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
17 | * |
18 | * Copyright (c) 2019 (original work) Open Assessment Technologies SA |
19 | */ |
20 | |
21 | namespace oat\taoLti\models\classes; |
22 | |
23 | use core_kernel_classes_Class; |
24 | use oat\tao\model\OntologyClassService; |
25 | |
26 | /** |
27 | * Service methods to manage the LTI consumer business objects using the RDF API. |
28 | * |
29 | * @package taoLti |
30 | */ |
31 | class ConsumerService extends OntologyClassService |
32 | { |
33 | public const SERVICE_ID = 'taoLti/ConsumerService'; |
34 | public const CLASS_URI = 'http://www.tao.lu/Ontologies/TAOLTI.rdf#LTIConsumer'; |
35 | |
36 | /** |
37 | * return the group top level class |
38 | * |
39 | * @return core_kernel_classes_Class |
40 | */ |
41 | public function getRootClass() |
42 | { |
43 | return $this->getClass(self::CLASS_URI); |
44 | } |
45 | } |