Controller Blueprints MS
[ccsdk/cds.git] / ms / controllerblueprints / modules / core / src / main / kotlin / org / onap / ccsdk / apps / controllerblueprints / core / ConfigModelConstant.kt
1 /*\r
2  * Copyright © 2017-2018 AT&T Intellectual Property.\r
3  *\r
4  * Licensed under the Apache License, Version 2.0 (the "License");\r
5  * you may not use this file except in compliance with the License.\r
6  * You may obtain a copy of the License at\r
7  *\r
8  *     http://www.apache.org/licenses/LICENSE-2.0\r
9  *\r
10  * Unless required by applicable law or agreed to in writing, software\r
11  * distributed under the License is distributed on an "AS IS" BASIS,\r
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
13  * See the License for the specific language governing permissions and\r
14  * limitations under the License.\r
15  */\r
16 \r
17 package org.onap.ccsdk.apps.controllerblueprints.core\r
18 \r
19 /**\r
20  *\r
21  *\r
22  * @author Brinda Santh\r
23  */\r
24 object ConfigModelConstant {\r
25 \r
26     const val MODEL_CONTENT_TYPE_TOSCA_JSON = "TOSCA_JSON"\r
27     const val MODEL_CONTENT_TYPE_TEMPLATE = "TEMPLATE"\r
28 \r
29     const val MODEL_TYPE_DATA_TYPE = "tosca.datatypes.Root"\r
30     const val MODEL_TYPE_DATA_TYPE_DYNAMIC = "tosca.datatypes.Dynamic"\r
31 \r
32     const val MODEL_TYPE_NODE_DG = "tosca.nodes.DG"\r
33     const val MODEL_TYPE_NODE_COMPONENT = "tosca.nodes.Component"\r
34     const val MODEL_TYPE_NODE_VNF = "tosca.nodes.Vnf"\r
35     const val MODEL_TYPE_NODE_ARTIFACT = "tosca.nodes.Artifact"\r
36 \r
37     const val MODEL_TYPE_CAPABILITY_NETCONF = "tosca.capability.Netconf"\r
38     const val MODEL_TYPE_CAPABILITY_SSH = "tosca.capability.Ssh"\r
39     const val MODEL_TYPE_CAPABILITY_SFTP = "tosca.capability.Sftp"\r
40     const val MODEL_TYPE_CAPABILITY_CHEF = "tosca.capability.Chef"\r
41     const val MODEL_TYPE_CAPABILITY_ANSIBLEF = "tosca.capability.Ansible"\r
42 \r
43     const val CAPABILITY_PROPERTY_MAPPING = "mapping"\r
44 \r
45     const val SOURCE_INPUT = "input"\r
46     const val SOURCE_DEFAULT = "default"\r
47     const val SOURCE_MDSAL = "mdsal"\r
48     const val SOURCE_DB = "db"\r
49 \r
50     const val PROPERTY_RECIPE_NAMES = "action-names"\r
51 \r
52 }\r