summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShiwei Tian <tian.shiwei@zte.com.cn>2017-09-25 11:00:22 +0800
committerShiwei Tian <tian.shiwei@zte.com.cn>2017-09-25 11:00:22 +0800
commit2f430332203a347ca764e2e7c345efdabefde797 (patch)
treefa62c529caead5bc08b7cdd3022974749bb7de0a
parent845c52a1656f5af3d2e4fa5c04d0383a2c2824f1 (diff)
modify method extractVesAlarm to private
Issue-ID: HOLMES-29 Change-Id: I78e71282953c6859a520a707d9a559e27f0441c6 Signed-off-by: Shiwei Tian <tian.shiwei@zte.com.cn>
-rw-r--r--dmaap-dsa/src/main/java/org/onap/holmes/dsa/dmaappolling/Subscriber.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/dmaap-dsa/src/main/java/org/onap/holmes/dsa/dmaappolling/Subscriber.java b/dmaap-dsa/src/main/java/org/onap/holmes/dsa/dmaappolling/Subscriber.java
index 3563b66..eea1533 100644
--- a/dmaap-dsa/src/main/java/org/onap/holmes/dsa/dmaappolling/Subscriber.java
+++ b/dmaap-dsa/src/main/java/org/onap/holmes/dsa/dmaappolling/Subscriber.java
@@ -78,7 +78,7 @@ public class Subscriber {
return response.readEntity(List.class);
}
- List<VesAlarm> extractVesAlarm(List<String> responseEntity) throws IOException {
+ private List<VesAlarm> extractVesAlarm(List<String> responseEntity) throws IOException {
List<VesAlarm> vesAlarmList = new ArrayList<>();
for (String entity : responseEntity) {
vesAlarmList.add(dMaaPResponseUtil.convertJsonToVesAlarm(entity));