Update property to identify SOL004 packages 95/126495/3
authoraribeiro <anderson.ribeiro@est.tech>
Thu, 6 Jan 2022 16:25:52 +0000 (16:25 +0000)
committerMichael Morris <michael.morris@est.tech>
Fri, 7 Jan 2022 14:01:22 +0000 (14:01 +0000)
Issue-ID: SDC-3837
Signed-off-by: aribeiro <anderson.ribeiro@est.tech>
Change-Id: I2af0628cddbbddd790ff9874e2f393a2f31f7407

common-app-api/src/main/java/org/openecomp/sdc/be/config/Configuration.java
openecomp-be/lib/openecomp-sdc-vendor-software-product-lib/openecomp-sdc-vendor-software-product-core/src/main/java/org/openecomp/sdc/vendorsoftwareproduct/services/impl/etsi/ETSIServiceImpl.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;
+    }
+
 }