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 WfEngineOntology |
26 | { |
27 | public const CLASS_URI_CALL_OF_SERVICES = 'http://www.tao.lu/middleware/wfEngine.rdf#ClassCallOfServices'; |
28 | public const PROPERTY_CALL_OF_SERVICES_SERVICE_DEFINITION = 'http://www.tao.lu/middleware/wfEngine.rdf#PropertyCallOfServicesServiceDefinition'; |
29 | public const PROPERTY_CALL_OF_SERVICES_ACTUAL_PARAMETER_OUT = 'http://www.tao.lu/middleware/wfEngine.rdf#PropertyCallOfServicesActualParameterOut'; |
30 | public const PROPERTY_CALL_OF_SERVICES_ACTUAL_PARAMETER_IN = 'http://www.tao.lu/middleware/wfEngine.rdf#PropertyCallOfServicesActualParameterin'; |
31 | public const PROPERTY_CALL_OF_SERVICES_TOP = 'http://www.tao.lu/middleware/wfEngine.rdf#PropertyCallOfServicesTop'; |
32 | public const PROPERTY_CALL_OF_SERVICES_LEFT = 'http://www.tao.lu/middleware/wfEngine.rdf#PropertyCallOfServicesLeft'; |
33 | public const PROPERTY_CALL_OF_SERVICES_WIDTH = 'http://www.tao.lu/middleware/wfEngine.rdf#PropertyCallOfServicesWidth'; |
34 | public const PROPERTY_CALL_OF_SERVICES_HEIGHT = 'http://www.tao.lu/middleware/wfEngine.rdf#PropertyCallOfServicesHeight'; |
35 | public const CLASS_URI_ACTUAL_PARAMETER = 'http://www.tao.lu/middleware/wfEngine.rdf#ClassActualParameters'; |
36 | public const PROPERTY_ACTUAL_PARAMETER_PROCESS_VARIABLE = 'http://www.tao.lu/middleware/wfEngine.rdf#PropertyActualParametersProcessVariable'; |
37 | public const PROPERTY_ACTUAL_PARAMETER_CONSTANT_VALUE = 'http://www.tao.lu/middleware/wfEngine.rdf#PropertyActualParametersConstantValue'; |
38 | public const PROPERTY_ACTUAL_PARAMETER_FORMAL_PARAMETER = 'http://www.tao.lu/middleware/wfEngine.rdf#PropertyActualParametersFormalParameter'; |
39 | public const CLASS_URI_SERVICES_DEFINITION = 'http://www.tao.lu/middleware/wfEngine.rdf#ClassServiceDefinitions'; |
40 | public const PROPERTY_SERVICES_DEFINITION_FORMAL_PARAM_OUT = 'http://www.tao.lu/middleware/wfEngine.rdf#PropertyServiceDefinitionsFormalParameterOut'; |
41 | public const PROPERTY_SERVICES_DEFINITION_FORMAL_PARAM_IN = 'http://www.tao.lu/middleware/wfEngine.rdf#PropertyServiceDefinitionsFormalParameterIn'; |
42 | public const CLASS_URI_SUPPORT_SERVICES = 'http://www.tao.lu/middleware/wfEngine.rdf#ClassSupportServices'; |
43 | public const PROPERTY_SUPPORT_SERVICES_URL = 'http://www.tao.lu/middleware/wfEngine.rdf#PropertySupportServicesUrl'; |
44 | public const CLASS_URI_WEBSERVICES = 'http://www.tao.lu/middleware/wfEngine.rdf#ClassWebServices'; |
45 | public const CLASS_URI_FORMAL_PARAMETER = 'http://www.tao.lu/middleware/wfEngine.rdf#ClassFormalParameters'; |
46 | public const PROPERTY_FORMAL_PARAMETER_DEFAULTCONSTANT_VALUE = 'http://www.tao.lu/middleware/wfEngine.rdf#PropertyFormalParametersDefaultConstantValue'; |
47 | public const PROPERTY_FORMAL_PARAMETER_DEFAULT_PROCESS_VARIABLE = 'http://www.tao.lu/middleware/wfEngine.rdf#PropertyFormalParametersDefaultProcessVariable'; |
48 | public const PROPERTY_FORMAL_PARAMETER_NAME = 'http://www.tao.lu/middleware/wfEngine.rdf#PropertyFormalParametersName'; |
49 | } |