[SDC-29] rebase continue work to align source
[sdc.git] / openecomp-be / lib / openecomp-sdc-translator-lib / openecomp-sdc-translator-core / src / main / java / org / openecomp / sdc / translator / services / heattotosca / ConfigConstants.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.sdc.translator.services.heattotosca;
22
23 public class ConfigConstants {
24   //namespaces
25   public static final String MANDATORY_TRANSLATOR_NAMESPACE = "mandatoryHeatToToscaTranslator";
26   public static final String MANDATORY_UNIFIED_MODEL_NAMESPACE = "mandatoryUnifiedModel";
27   public static final String TRANSLATOR_NAMESPACE = "heatToToscaTranslator";
28   public static final String MAPPING_NAMESPACE = "heatToToscaMapping";
29
30   //keys
31   public static final String RESOURCE_TRANSLATION_IMPL_KEY = "resourceTranslationImpl";
32   public static final String NESTED_RESOURCE_TRANSLATION_IMPL_KEY = "NestedResource";
33   public static final String DEFAULT_RESOURCE_TRANSLATION_IMPL_KEY = "DefaultResource";
34   public static final String FUNCTION_TRANSLATION_IMPL_KEY = "functionTranslationImpl";
35   public static final String NAMING_CONVENTION_EXTRACTOR_IMPL_KEY = "namingConventionExtractImpl";
36   public static final String UNIFIED_COMPOSITION_IMPL_KEY = "unifiedCompositionImpl";
37   public static final String CONTRAIL_COMPUTE_NODE_TYPE_IMPL_KEY = "ContrailComputeNodeTypeName";
38   public static final String RESOURCE_MAPPING_KEY = "resourceMapping";
39   public static final String SUPPORTED_CONSOLIDATION_COMPUTE_RESOURCES_KEY =
40       "supportedConsolidationComputeResources";
41   public static final String SUPPORTED_CONSOLIDATION_PORT_RESOURCES_KEY =
42       "supportedConsolidationPortResources";
43   public static final String ENRICH_PORT_RESOURCE_PROP =
44       "enrichPortResourceProperties";
45
46
47   //others
48   public static final String TRANS_MAPPING_DELIMITER_CHAR = "#";
49
50   private ConfigConstants() {
51   }
52 }