modify method extractVesAlarm to private 23/14923/1
authorShiwei Tian <tian.shiwei@zte.com.cn>
Mon, 25 Sep 2017 03:00:22 +0000 (11:00 +0800)
committerShiwei Tian <tian.shiwei@zte.com.cn>
Mon, 25 Sep 2017 03:00:22 +0000 (11:00 +0800)
Issue-ID: HOLMES-29

Change-Id: I78e71282953c6859a520a707d9a559e27f0441c6
Signed-off-by: Shiwei Tian <tian.shiwei@zte.com.cn>
dmaap-dsa/src/main/java/org/onap/holmes/dsa/dmaappolling/Subscriber.java

index 3563b66..eea1533 100644 (file)
@@ -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));