Update property to identify SOL004 packages
[sdc.git] / common-app-api / src / main / java / org / openecomp / sdc / be / config / Configuration.java
index cabda08..5d9f740 100644 (file)
@@ -145,6 +145,7 @@ public class Configuration extends BasicConfiguration {
     private List<ArtifactConfiguration> artifacts;
     private Map<String, Map<String, List<String>>> componentAllowedInstanceTypes;
     private ExternalCsarStore externalCsarStore;
+    private CsarFormat csarFormat;
 
     @SuppressWarnings("unchecked")
     private <K, V> Map<K, V> safeGetCapsInsensitiveMap(Map<K, V> map) {
@@ -515,4 +516,12 @@ public class Configuration extends BasicConfiguration {
         }
     }
 
+    @Getter
+    @Setter
+    @NoArgsConstructor
+    public static class CsarFormat {
+
+        private String defaultFormat;
+    }
+
 }