EP and LKG UUID bugfix 95/60295/2
authorayalaben <ayala.benzvi@amdocs.com>
Mon, 13 Aug 2018 12:57:40 +0000 (15:57 +0300)
committerAvi Gaffa <avi.gaffa@amdocs.com>
Mon, 13 Aug 2018 14:15:17 +0000 (14:15 +0000)
Change-Id: I00616bdd4e80a3131df709dbcca156cbe9d56a11
Issue-ID: SDC-1640
Signed-off-by: ayalaben <ayala.benzvi@amdocs.com>
openecomp-be/lib/openecomp-sdc-vendor-license-lib/openecomp-sdc-vendor-license-api/src/main/java/org/openecomp/sdc/vendorlicense/dao/types/EntitlementPoolEntity.java
openecomp-be/lib/openecomp-sdc-vendor-license-lib/openecomp-sdc-vendor-license-api/src/main/java/org/openecomp/sdc/vendorlicense/dao/types/LicenseKeyGroupEntity.java
openecomp-be/lib/openecomp-sdc-vendor-license-lib/openecomp-sdc-vendor-license-api/src/main/java/org/openecomp/sdc/vendorlicense/dao/types/MultiChoiceOrOther.java

index ed310f1..4c2435a 100644 (file)
@@ -331,8 +331,7 @@ public class EntitlementPoolEntity implements VersionableEntity {
         && Objects.equals(description, that.description)
         && Objects.equals(thresholdUnit, that.thresholdUnit)
         && Objects.equals(increments, that.increments)
-        && Objects.equals(operationalScope, that.operationalScope)
-        && Objects.equals(referencingFeatureGroups, that.referencingFeatureGroups)
+        && Objects.equals(that.operationalScope, operationalScope)
         && Objects.equals(startDate, that.startDate)
         && Objects.equals(expiryDate, that.expiryDate)
         && Objects.equals(manufacturerReferenceNumber, that.manufacturerReferenceNumber)
index 5d89a1b..c84df9c 100644 (file)
@@ -306,8 +306,7 @@ public class LicenseKeyGroupEntity implements VersionableEntity {
         && Objects.equals(name, that.name)
         && Objects.equals(description, that.description)
         && type == that.type
-        && Objects.equals(operationalScope, that.operationalScope)
-        && Objects.equals(referencingFeatureGroups, that.referencingFeatureGroups)
+        && Objects.equals(that.operationalScope, operationalScope)
         && Objects.equals(startDate, that.startDate)
         && Objects.equals(expiryDate, that.expiryDate)
         && Objects.equals(thresholdValue, that.thresholdValue)