Adjust BP-gen to correctly support DFC component spec - types
[dcaegen2/platform.git] / mod / bpgenerator / src / main / java / org / onap / blueprintgenerator / models / blueprint / BpConstants.java
1 /*============LICENSE_START=======================================================
2  org.onap.dcae
3  ================================================================================
4  Copyright (c) 2020 Nokia Intellectual Property. All rights reserved.
5  ================================================================================
6  Licensed under the Apache License, Version 2.0 (the "License");
7  you may not use this file except in compliance with the License.
8  You may obtain a copy of the License at
9
10  http://www.apache.org/licenses/LICENSE-2.0
11
12  Unless required by applicable law or agreed to in writing, software
13  distributed under the License is distributed on an "AS IS" BASIS,
14  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  See the License for the specific language governing permissions and
16  limitations under the License.
17  ============LICENSE_END=========================================================
18  */
19
20 package org.onap.blueprintgenerator.models.blueprint;
21
22 public final class BpConstants {
23
24     private BpConstants() {}
25
26     public static final String CLOUDIFY_DSL_1_3 = "cloudify_dsl_1_3";
27
28     public static final String CONTENERIZED_SERVICE_COMPONENT_USING_DMAAP = "dcae.nodes.ContainerizedServiceComponentUsingDmaap";
29     public static final String CONTENERIZED_SERVICE_COMPONENT = "dcae.nodes.ContainerizedServiceComponent";
30     public static final String FEED = "dcaegen2.nodes.Feed";
31     public static final String TOPIC = "dcaegen2.nodes.Topic";
32     public static final String PUBLISH_EVENTS = "dcaegen2.relationships.publish_events";
33     public static final String PUBLISH_FILES = "dcaegen2.relationships.publish_files";
34     public static final String SUBSCRIBE_TO_EVENTS = "dcaegen2.relationships.subscribe_to_events";
35     public static final String SUBSCRIBE_TO_FILES = "dcaegen2.relationships.subscribe_to_files";
36
37     public static final String TOSCA_DATATYPES_ROOT = "tosca.datatypes.Root";
38     public static final String TOSCA_NODES_ROOT = "tosca.nodes.Root";
39     public static final String TOSCA_SIMPLE_YAML = "tosca_simple_yaml_1_0_0";
40 }