summaryrefslogtreecommitdiffstats
path: root/portal-BE/src/main/java/org/onap/portal/domain/db/cr/CrReportSchedule.java
diff options
context:
space:
mode:
Diffstat (limited to 'portal-BE/src/main/java/org/onap/portal/domain/db/cr/CrReportSchedule.java')
-rw-r--r--portal-BE/src/main/java/org/onap/portal/domain/db/cr/CrReportSchedule.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/portal-BE/src/main/java/org/onap/portal/domain/db/cr/CrReportSchedule.java b/portal-BE/src/main/java/org/onap/portal/domain/db/cr/CrReportSchedule.java
index f3935ffc..6d09aa40 100644
--- a/portal-BE/src/main/java/org/onap/portal/domain/db/cr/CrReportSchedule.java
+++ b/portal-BE/src/main/java/org/onap/portal/domain/db/cr/CrReportSchedule.java
@@ -41,8 +41,7 @@
package org.onap.portal.domain.db.cr;
import java.time.LocalDateTime;
-import java.util.ArrayList;
-import java.util.List;
+import java.util.Set;
import javax.persistence.CascadeType;
import javax.persistence.Column;
import javax.persistence.Entity;
@@ -183,5 +182,5 @@ public class CrReportSchedule {
cascade = CascadeType.ALL,
fetch = FetchType.LAZY
)
- private List<CrReportScheduleUsers> crReportScheduleUsers = new ArrayList<>();
+ private Set<CrReportScheduleUsers> crReportScheduleUsers;
}