Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| 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) 2017 (original work) Open Assessment Technologies SA; |
| 19 | * |
| 20 | * phpcs:disable Generic.Files.LineLength |
| 21 | */ |
| 22 | |
| 23 | namespace oat\tao\model; |
| 24 | |
| 25 | interface TaoOntology |
| 26 | { |
| 27 | public const CLASS_URI_OBJECT = 'http://www.tao.lu/Ontologies/TAO.rdf#TAOObject'; |
| 28 | public const CLASS_URI_GROUP = 'http://www.tao.lu/Ontologies/TAOGroup.rdf#Group'; |
| 29 | public const CLASS_URI_ITEM = 'http://www.tao.lu/Ontologies/TAOItem.rdf#Item'; |
| 30 | public const CLASS_URI_RESULT = 'http://www.tao.lu/Ontologies/TAOResult.rdf#Result'; |
| 31 | public const CLASS_URI_SUBJECT = 'http://www.tao.lu/Ontologies/TAOSubject.rdf#Subject'; |
| 32 | public const CLASS_URI_TEST = 'http://www.tao.lu/Ontologies/TAOTest.rdf#Test'; |
| 33 | public const CLASS_URI_DELIVERY = 'http://www.tao.lu/Ontologies/TAODelivery.rdf#Delivery'; |
| 34 | public const CLASS_URI_ASSEMBLED_DELIVERY = 'http://www.tao.lu/Ontologies/TAODelivery.rdf#AssembledDelivery'; |
| 35 | public const CLASS_URI_LIST = 'http://www.tao.lu/Ontologies/TAO.rdf#List'; |
| 36 | public const CLASS_URI_PROCESS_EXECUTIONS = 'http://www.tao.lu/middleware/taoqual.rdf#i119010455660544'; |
| 37 | public const CLASS_URI_MANAGEMENT_ROLE = 'http://www.tao.lu/Ontologies/TAO.rdf#ManagementRole'; |
| 38 | public const CLASS_URI_WORKER_ROLE = 'http://www.tao.lu/Ontologies/TAO.rdf#WorkerRole'; |
| 39 | public const CLASS_URI_TAO_USER = 'http://www.tao.lu/Ontologies/TAO.rdf#User'; |
| 40 | public const CLASS_URI_TREE = 'http://www.tao.lu/Ontologies/TAO.rdf#Tree'; |
| 41 | |
| 42 | public const PROPERTY_UPDATED_AT = 'http://www.tao.lu/Ontologies/TAO.rdf#UpdatedAt'; |
| 43 | public const PROPERTY_UPDATED_BY = 'http://www.tao.lu/Ontologies/TAO.rdf#UpdatedBy'; |
| 44 | public const PROPERTY_LIST_LEVEL = 'http://www.tao.lu/Ontologies/TAO.rdf#level'; |
| 45 | public const PROPERTY_USER_FIRST_TIME = 'http://www.tao.lu/Ontologies/TAO.rdf#FirstTimeInTao'; |
| 46 | public const PROPERTY_USER_LAST_EXTENSION = 'http://www.tao.lu/Ontologies/TAO.rdf#LastExtensionUsed'; |
| 47 | |
| 48 | public const PROPERTY_ABSTRACT_MODEL_STATUS = 'http://www.tao.lu/Ontologies/TAO.rdf#AbstractModelStatus'; |
| 49 | public const PROPERTY_LOCK = 'http://www.tao.lu/Ontologies/TAO.rdf#Lock'; |
| 50 | public const PROPERTY_GUI_ORDER = 'http://www.tao.lu/Ontologies/TAO.rdf#TAOGUIOrder'; |
| 51 | public const DEFAULT_USER_URI_SUFFIX = '#superUser'; |
| 52 | |
| 53 | /** @deprecated use TaoRoles::TAO_MANAGER */ |
| 54 | public const PROPERTY_INSTANCE_ROLE_TAO_MANAGER = 'http://www.tao.lu/Ontologies/TAO.rdf#TaoManagerRole'; |
| 55 | /** @deprecated use TaoOntology::CLASS_URI_OBJECT */ |
| 56 | public const OBJECT_CLASS_URI = 'http://www.tao.lu/Ontologies/TAO.rdf#TAOObject'; |
| 57 | /** @deprecated use TaoOntology::CLASS_URI_GROUP */ |
| 58 | public const GROUP_CLASS_URI = 'http://www.tao.lu/Ontologies/TAOGroup.rdf#Group'; |
| 59 | /** @deprecated use TaoOntology::CLASS_URI_ITEM */ |
| 60 | public const ITEM_CLASS_URI = 'http://www.tao.lu/Ontologies/TAOItem.rdf#Item'; |
| 61 | /** @deprecated use TaoOntology::CLASS_URI_RESULT */ |
| 62 | public const RESULT_CLASS_URI = 'http://www.tao.lu/Ontologies/TAOResult.rdf#Result'; |
| 63 | /** @deprecated use TaoOntology::CLASS_URI_SUBJECT */ |
| 64 | public const SUBJECT_CLASS_URI = 'http://www.tao.lu/Ontologies/TAOSubject.rdf#Subject'; |
| 65 | /** @deprecated use TaoOntology::CLASS_URI_TEST */ |
| 66 | public const TEST_CLASS_URI = 'http://www.tao.lu/Ontologies/TAOTest.rdf#Test'; |
| 67 | /** @deprecated use TaoOntology::CLASS_URI_DELIVERY */ |
| 68 | public const DELIVERY_CLASS_URI = 'http://www.tao.lu/Ontologies/TAODelivery.rdf#Delivery'; |
| 69 | /** @deprecated use TaoOntology::CLASS_URI_LIST */ |
| 70 | public const LIST_CLASS_URI = 'http://www.tao.lu/Ontologies/TAO.rdf#List'; |
| 71 | /** @deprecated use TaoOntology::PROPERTY_LIST_LEVEL */ |
| 72 | public const LIST_LEVEL_PROP = 'http://www.tao.lu/Ontologies/TAO.rdf#level'; |
| 73 | /** @deprecated use TaoOntology::PROPERTY_GUI_ORDER */ |
| 74 | public const GUI_ORDER_PROP = 'http://www.tao.lu/Ontologies/TAO.rdf#TAOGUIOrder'; |
| 75 | /** @deprecated use TaoRoles::GLOBAL_MANAGER */ |
| 76 | public const PROPERTY_INSTANCE_ROLE_GLOBALMANAGER = 'http://www.tao.lu/Ontologies/TAO.rdf#GlobalManagerRole'; |
| 77 | /** @deprecated use TaoRoles::SYSTEM_ADMINISTRATOR */ |
| 78 | public const PROPERTY_INSTANCE_ROLE_SYSADMIN = 'http://www.tao.lu/Ontologies/TAO.rdf#SysAdminRole'; |
| 79 | /** @deprecated use TaoRoles::BACK_OFFICE */ |
| 80 | public const PROPERTY_INSTANCE_ROLE_BACKOFFICE = 'http://www.tao.lu/Ontologies/TAO.rdf#BackOfficeRole'; |
| 81 | /** @deprecated use TaoRoles::DELIVERY */ |
| 82 | public const PROPERTY_INSTANCE_ROLE_DELIVERY = 'http://www.tao.lu/Ontologies/TAO.rdf#DeliveryRole'; |
| 83 | /** @deprecated use DataStore::CLASS_URI_OAUTH_CONSUMER */ |
| 84 | public const CLASS_URI_OAUTH_CONSUMER = 'http://www.tao.lu/Ontologies/TAO.rdf#OauthConsumer'; |
| 85 | /** @deprecated use DataStore::PROPERTY_OAUTH_KEY */ |
| 86 | public const PROPERTY_OAUTH_KEY = 'http://www.tao.lu/Ontologies/TAO.rdf#OauthKey'; |
| 87 | /** @deprecated use DataStore::PROPERTY_OAUTH_SECRET */ |
| 88 | public const PROPERTY_OAUTH_SECRET = 'http://www.tao.lu/Ontologies/TAO.rdf#OauthSecret'; |
| 89 | /** @deprecated use DataStore::PROPERTY_OAUTH_CALLBACK */ |
| 90 | public const PROPERTY_OAUTH_CALLBACK = 'http://www.tao.lu/Ontologies/TAO.rdf#OauthCallbackUrl'; |
| 91 | /** @deprecated use Index::PROPERTY_INDEX */ |
| 92 | public const INDEX_PROPERTY = 'http://www.tao.lu/Ontologies/TAO.rdf#PropertyIndex'; |
| 93 | /** @deprecated use Index::PROPERTY_INDEX_FUZZY_MATCHING */ |
| 94 | public const INDEX_PROPERTY_FUZZY_MATCHING = 'http://www.tao.lu/Ontologies/TAO.rdf#IndexFuzzyMatching'; |
| 95 | /** @deprecated use Index::PROPERTY_INDEX_IDENTIFIER */ |
| 96 | public const INDEX_PROPERTY_IDENTIFIER = 'http://www.tao.lu/Ontologies/TAO.rdf#IndexIdentifier'; |
| 97 | /** @deprecated use Index::PROPERTY_INDEX_TOKENIZER */ |
| 98 | public const INDEX_PROPERTY_TOKENIZER = 'http://www.tao.lu/Ontologies/TAO.rdf#IndexTokenizer'; |
| 99 | /** @deprecated use TaoRoles::BASE_USER */ |
| 100 | public const PROPERTY_INSTANCE_ROLE_BASE_USER = 'http://www.tao.lu/Ontologies/TAO.rdf#BaseUserRole'; |
| 101 | /** @deprecated use Index::PROPERTY_DEFAULT_SEARCH */ |
| 102 | public const INDEX_PROPERTY_DEFAULT_SEARCH = 'http://www.tao.lu/Ontologies/TAO.rdf#IndexDefaultSearch'; |
| 103 | /** @deprecated use tao_models_classes_LanguageService::CLASS_URI_LANGUAGES */ |
| 104 | public const CLASS_URI_LANGUAGES = 'http://www.tao.lu/Ontologies/TAO.rdf#Languages'; |
| 105 | /** @deprecated use tao_models_classes_LanguageService::PROPERTY_LANGUAGE_USAGES */ |
| 106 | public const PROPERTY_LANGUAGE_USAGES = 'http://www.tao.lu/Ontologies/TAO.rdf#LanguageUsages'; |
| 107 | /** @deprecated use tao_models_classes_LanguageService::PROPERTY_LANGUAGE_ORIENTATION */ |
| 108 | public const PROPERTY_LANGUAGE_ORIENTATION = 'http://www.tao.lu/Ontologies/TAO.rdf#LanguageOrientation'; |
| 109 | /** @deprecated use tao_models_classes_LanguageService::INSTANCE_ORIENTATION_LTR */ |
| 110 | public const PROPERTY_INSTANCE_ORIENTATION_LTR = 'http://www.tao.lu/Ontologies/TAO.rdf#OrientationLeftToRight'; |
| 111 | /** @deprecated use tao_models_classes_LanguageService::INSTANCE_ORIENTATION_RTL */ |
| 112 | public const PROPERTY_INSTANCE_ORIENTATION_RTL = 'http://www.tao.lu/Ontologies/TAO.rdf#OrientationRightToLeft'; |
| 113 | /** @deprecated use tao_models_classes_LanguageService::CLASS_URI_LANGUAGES_USAGES */ |
| 114 | public const CLASS_URI_LANGUAGES_USAGES = 'http://www.tao.lu/Ontologies/TAO.rdf#LanguagesUsages'; |
| 115 | /** @deprecated use tao_models_classes_LanguageService::INSTANCE_LANGUAGE_USAGE_GUI */ |
| 116 | public const PROPERTY_INSTANCE_LANGUAGE_USAGE_GUI = 'http://www.tao.lu/Ontologies/TAO.rdf#LanguageUsageGUI'; |
| 117 | /** @deprecated use tao_models_classes_LanguageService::INSTANCE_LANGUAGE_USAGE_DATA */ |
| 118 | public const PROPERTY_STANCE_LANGUAGE_USAGE_DATA = 'http://www.tao.lu/Ontologies/TAO.rdf#LanguageUsageData'; |
| 119 | /** @deprecated use tao_models_classes_LanguageService::CLASS_URI_LANGUAGES */ |
| 120 | public const LANGUAGES_CLASS_URI = 'http://www.tao.lu/Ontologies/TAO.rdf#Languages'; |
| 121 | |
| 122 | public const PROPERTY_TRANSLATION_TYPE = 'http://www.tao.lu/Ontologies/TAO.rdf#TranslationType'; |
| 123 | public const PROPERTY_VALUE_TRANSLATION_TYPE_ORIGINAL = 'http://www.tao.lu/Ontologies/TAO.rdf#TranslationTypeOriginal'; |
| 124 | public const PROPERTY_VALUE_TRANSLATION_TYPE_TRANSLATION = 'http://www.tao.lu/Ontologies/TAO.rdf#TranslationTypeTranslation'; |
| 125 | |
| 126 | public const PROPERTY_TRANSLATION_PROGRESS = 'http://www.tao.lu/Ontologies/TAO.rdf#TranslationProgress'; |
| 127 | public const PROPERTY_VALUE_TRANSLATION_PROGRESS_PENDING = 'http://www.tao.lu/Ontologies/TAO.rdf#TranslationProgressStatusPending'; |
| 128 | public const PROPERTY_VALUE_TRANSLATION_PROGRESS_TRANSLATING = 'http://www.tao.lu/Ontologies/TAO.rdf#TranslationProgressStatusTranslating'; |
| 129 | public const PROPERTY_VALUE_TRANSLATION_PROGRESS_TRANSLATED = 'http://www.tao.lu/Ontologies/TAO.rdf#TranslationProgressStatusTranslated'; |
| 130 | |
| 131 | public const PROPERTY_TRANSLATION_STATUS = 'http://www.tao.lu/Ontologies/TAO.rdf#TranslationStatus'; |
| 132 | public const PROPERTY_VALUE_TRANSLATION_STATUS_READY = 'http://www.tao.lu/Ontologies/TAO.rdf#TranslationStatusReadyForTranslation'; |
| 133 | public const PROPERTY_VALUE_TRANSLATION_STATUS_NOT_READY = 'http://www.tao.lu/Ontologies/TAO.rdf#TranslationStatusNotReadyForTranslation'; |
| 134 | |
| 135 | public const PROPERTY_UNIQUE_IDENTIFIER = 'http://www.tao.lu/Ontologies/TAO.rdf#UniqueIdentifier'; |
| 136 | public const PROPERTY_TRANSLATION_ORIGINAL_RESOURCE_URI = 'http://www.tao.lu/Ontologies/TAO.rdf#TranslationOriginalResourceUri'; |
| 137 | public const PROPERTY_LANGUAGE = 'http://www.tao.lu/Ontologies/TAO.rdf#Language'; |
| 138 | public const PROPERTY_TRANSLATED_INTO_LANGUAGES = 'http://www.tao.lu/Ontologies/TAO.rdf#TranslatedIntoLanguages'; |
| 139 | public const LANGUAGE_PREFIX = 'http://www.tao.lu/Ontologies/TAO.rdf#Lang'; |
| 140 | } |