push addional code
[sdc.git] / openecomp-be / lib / openecomp-sdc-translator-lib / openecomp-sdc-translator-core / src / main / java / org / openecomp / sdc / translator / services / heattotosca / Constants.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 Constants {
24   //Service Template - Template Names
25   public static final String COMMON_GLOBAL_TEMPLATE_NAME = "CommonGlobalTypes";
26   public static final String CINDER_VOLUME_TEMPLATE_NAME = "CinderVolumeGlobalTypes";
27   public static final String CONTRAIL_VIRTUAL_NETWORK_TEMPLATE_NAME =
28       "ContrailVirtualNetworkGlobalType";
29   public static final String CONTRAIL_NETWORK_RULE_TEMPLATE_NAME = "ContrailNetworkRuleGlobalType";
30   public static final String CONTRAILV2_VIRTUAL_NETWORK_TEMPLATE_NAME =
31       "ContrailV2VirtualNetworkGlobalType";
32   public static final String CONTRAILV2_NETWORK_RULE_TEMPLATE_NAME =
33       "ContrailV2NetworkRuleGlobalType";
34   public static final String CONTRAILV2_VIRTUAL_MACHINE_INTERFACE_TEMPLATE_NAME =
35       "ContrailV2VirtualMachineInterfaceGlobalType";
36   public static final String NEUTRON_NET_TEMPLATE_NAME = "NeutronNetGlobalTypes";
37   public static final String NEUTRON_PORT_TEMPLATE_NAME = "NeutronPortGlobalTypes";
38   public static final String NEUTRON_SECURITY_RULES_TEMPLATE_NAME =
39       "NeutronSecurityRulesGlobalTypes";
40   public static final String NOVA_SERVER_TEMPLATE_NAME = "NovaServerGlobalTypes";
41   public static final String ABSTRACT_SUBSTITUTE_TEMPLATE_NAME = "AbstractSubstituteGlobalTypes";
42   public static final String GLOBAL_SUBSTITUTION_TYPES_TEMPLATE_NAME = "GlobalSubstitutionTypes";
43   public static final String CONTRAIL_COMPUTE_TEMPLATE_NAME = "ContrailComputeGlobalTypes";
44   public static final String CONTRAIL_PORT_TEMPLATE_NAME = "ContrailPortGlobalTypes";
45   public static final String CONTRAIL_ABSTRACT_SUBSTITUTE_TEMPLATE_NAME =
46       "ContrailAbstractSubstituteGlobalTypes";
47   //properties
48   public static final String MAX_INSTANCES_PROPERTY_NAME = "max_instances";
49   public static final String DESCRIPTION_PROPERTY_NAME = "description";
50   public static final String NAME_PROPERTY_NAME = "name";
51   public static final String RULES_PROPERTY_NAME = "rules";
52   public static final String SECURITY_GROUPS_PROPERTY_NAME = "security_groups";
53   public static final String PORT_PROPERTY_NAME = "port";
54   //General
55   public static final String PROP = "properties";
56   public static final String ATTR = "attributes";
57
58   private Constants() {
59   }
60 }