From 61aa954c94ddb1b60cb57d1c9d4b0908e0929487 Mon Sep 17 00:00:00 2001 From: xuegao Date: Fri, 12 Jun 2020 13:01:57 +0200 Subject: Fix Vulnerabilities Fix the vulnerabilities reported by Sonar. Issue-ID: SDC-3114 Signed-off-by: xuegao Change-Id: Icf97e427ef0c192b2f279380d7ee9eb570949d1f Signed-off-by: xuegao --- .../notification/workers/NotificationReceiver.java | 43 +++++----------------- .../notification/workers/NotificationWorker.java | 4 +- 2 files changed, 11 insertions(+), 36 deletions(-) (limited to 'openecomp-be') diff --git a/openecomp-be/lib/openecomp-sdc-notification-lib/openecomp-sdc-notification-worker/src/main/java/org/openecomp/sdc/notification/workers/NotificationReceiver.java b/openecomp-be/lib/openecomp-sdc-notification-lib/openecomp-sdc-notification-worker/src/main/java/org/openecomp/sdc/notification/workers/NotificationReceiver.java index ee802640c4..4ce87427aa 100644 --- a/openecomp-be/lib/openecomp-sdc-notification-lib/openecomp-sdc-notification-worker/src/main/java/org/openecomp/sdc/notification/workers/NotificationReceiver.java +++ b/openecomp-be/lib/openecomp-sdc-notification-lib/openecomp-sdc-notification-worker/src/main/java/org/openecomp/sdc/notification/workers/NotificationReceiver.java @@ -24,46 +24,21 @@ import org.openecomp.sdc.notification.types.NotificationsStatusDto; import java.util.UUID; import java.util.function.Consumer; +import lombok.AllArgsConstructor; +import lombok.Getter; +import lombok.Setter; - +@Getter +@Setter +@AllArgsConstructor public class NotificationReceiver { - public String ownerId = null; - public Consumer notesProcessor = null; - public UUID lastEventId = null; - - NotificationReceiver(String ownerId, UUID lastEventId, Consumer notesProcessor) { - this.ownerId = ownerId; - this.lastEventId = lastEventId; - this.notesProcessor = notesProcessor; - } + private String ownerId = null; + private UUID lastEventId = null; + private Consumer notesProcessor = null; NotificationReceiver(String ownerId, Consumer notesProcessor) { this(ownerId, null, notesProcessor); } - - public void setOwnerId(String ownerId) { - this.ownerId = ownerId; - } - - public String getOwnerId() { - return this.ownerId; - } - - public void setNotesProcessor(Consumer notesProcessor) { - this.notesProcessor = notesProcessor; - } - - public Consumer getNotesProcessor() { - return this.notesProcessor; - } - - public void setLastEventId(UUID lastEventId) { - this.lastEventId = lastEventId; - } - - public UUID getlastEventId() { - return this.lastEventId; - } } diff --git a/openecomp-be/lib/openecomp-sdc-notification-lib/openecomp-sdc-notification-worker/src/main/java/org/openecomp/sdc/notification/workers/NotificationWorker.java b/openecomp-be/lib/openecomp-sdc-notification-lib/openecomp-sdc-notification-worker/src/main/java/org/openecomp/sdc/notification/workers/NotificationWorker.java index cde6419aa8..dce8edb356 100644 --- a/openecomp-be/lib/openecomp-sdc-notification-lib/openecomp-sdc-notification-worker/src/main/java/org/openecomp/sdc/notification/workers/NotificationWorker.java +++ b/openecomp-be/lib/openecomp-sdc-notification-lib/openecomp-sdc-notification-worker/src/main/java/org/openecomp/sdc/notification/workers/NotificationWorker.java @@ -89,7 +89,7 @@ public class NotificationWorker { for (NotificationReceiver receiver : currUsers.values()) { String ownerId = receiver.getOwnerId(); - UUID eventId = receiver.getlastEventId(); + UUID eventId = receiver.getLastEventId(); NotificationsStatusDto status = news.getNewNotifications(ownerId, eventId, selectionLimit); if(Objects.nonNull(status) && CollectionUtils.isNotEmpty(status.getNotifications())) { receiver.setLastEventId(status.getLastScanned()); @@ -103,7 +103,7 @@ public class NotificationWorker { public void register(String ownerId, UUID lastDelivered, Consumer notesProcessor) { NotificationReceiver receiver = new NotificationReceiver(ownerId, lastDelivered, notesProcessor); activeUsers.put(ownerId, receiver); - LOGGER.debug("User {} is registered with eventId: {}", ownerId, receiver.getlastEventId()); + LOGGER.debug("User {} is registered with eventId: {}", ownerId, receiver.getLastEventId()); } public void unregister(String ownerId) { -- cgit 1.2.3-korg