Create new VSP, onboard from TOSCA file - UI
[sdc.git] / openecomp-be / backend / openecomp-sdc-vendor-software-product-manager / src / main / java / org / openecomp / sdc / vendorsoftwareproduct / impl / orchestration / csar / CSARConstants.java
1 package org.openecomp.sdc.vendorsoftwareproduct.impl.orchestration.csar;
2
3 import com.google.common.collect.ImmutableSet;
4 import static com.google.common.collect.ImmutableSet.of;
5 public class CSARConstants {
6
7     public static final ImmutableSet<String> ELIGBLE_FOLDERS = of("Artifacts/","Definitions/",
8             "Licenses/", "TOSCA-Metadata/");
9
10     public static final String MAIN_SERVICE_TEMPLATE_MF_FILE_NAME = "MainServiceTemplate.mf";
11     public static final String MAIN_SERVICE_TEMPLATE_YAML_FILE_NAME = "MainServiceTemplate.yaml";
12     public static final ImmutableSet<String> ELIGIBLE_FILES =
13             of(MAIN_SERVICE_TEMPLATE_MF_FILE_NAME,MAIN_SERVICE_TEMPLATE_YAML_FILE_NAME);
14
15     public static final String METADATA_MF_ATTRIBUTE = "metadata";
16     public static final String SOURCE_MF_ATTRIBUTE = "source";
17     public static final String SEPERATOR_MF_ATTRIBUTE = ":";
18 }