diff options
author | Shiwei Tian <tian.shiwei@zte.com.cn> | 2017-09-25 11:00:22 +0800 |
---|---|---|
committer | Shiwei Tian <tian.shiwei@zte.com.cn> | 2017-09-25 11:00:22 +0800 |
commit | 2f430332203a347ca764e2e7c345efdabefde797 (patch) | |
tree | fa62c529caead5bc08b7cdd3022974749bb7de0a /dmaap-dsa/src | |
parent | 845c52a1656f5af3d2e4fa5c04d0383a2c2824f1 (diff) |
modify method extractVesAlarm to private
Issue-ID: HOLMES-29
Change-Id: I78e71282953c6859a520a707d9a559e27f0441c6
Signed-off-by: Shiwei Tian <tian.shiwei@zte.com.cn>
Diffstat (limited to 'dmaap-dsa/src')
-rw-r--r-- | dmaap-dsa/src/main/java/org/onap/holmes/dsa/dmaappolling/Subscriber.java | 2 |
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)); |