modify bug
[holmes/dsa.git] / dmaap-dsa / src / main / java / org / onap / holmes / dsa / dmaappolling / Subscriber.java
index 3563b66..55b7558 100644 (file)
@@ -57,13 +57,18 @@ public class Subscriber {
     private boolean secure;
     private String topic;
     private String url;
-    private String consumerGroup = "g0";
-    private String consumer = "u1";
+    private String consumerGroup = "homlesGrounp1";
+    private String consumer = "homlesGrounp1";
     private String authInfo;
     private String authExpDate;
 
     public List<VesAlarm> subscribe() throws CorrelationException {
-        List<String> response = getDMaaPData();
+        List<String> response;
+        try {
+            response = getDMaaPData();
+        } catch (Exception e) {
+            throw new CorrelationException("Failed to connect to DMapp.", e);
+        }
         try {
             return extractVesAlarm(response);
         } catch (Exception e) {
@@ -78,7 +83,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));