Fix GAB problem in ui-ci tests 88/106088/3
authorandre.schmid <andre.schmid@est.tech>
Fri, 10 Apr 2020 13:13:23 +0000 (14:13 +0100)
committerOfir Sonsino <ofir.sonsino@intl.att.com>
Sun, 19 Apr 2020 06:35:33 +0000 (06:35 +0000)
Generic Artifact Browser is failing in tests
due mainly to a removal of the default constructor
in GAB class.

Change-Id: Id10b8d8d81c224e2658002b9c928e8aef7ca8e32
Issue-ID: SDC-2903
Signed-off-by: andre.schmid <andre.schmid@est.tech>
catalog-be/src/main/java/org/openecomp/sdc/be/info/GenericArtifactQueryInfo.java

index 9a1a7ec..7aa0070 100644 (file)
@@ -23,11 +23,13 @@ package org.openecomp.sdc.be.info;
 import java.util.Set;
 import lombok.AllArgsConstructor;
 import lombok.Getter;
+import lombok.NoArgsConstructor;
 import lombok.Setter;
 
 @Getter
 @Setter
 @AllArgsConstructor
+@NoArgsConstructor
 public class GenericArtifactQueryInfo {
     private Set<String> fields;
     private String parentId;