Merge "Fixed as per Java Code Conventions"
[ccsdk/sli/northbound.git] / dmaap-listener / src / main / java / org / onap / ccsdk / sli / northbound / dmaapclient / SdncDmaapConsumer.java
index a9f5fed..2b416e7 100644 (file)
@@ -43,15 +43,6 @@ public abstract class SdncDmaapConsumer implements Runnable {
     private int fetchPause = 5000; // Default pause between fetch - 5 seconds
     private int timeout = 15000; // Default timeout - 15 seconds
 
-    public boolean isReady() {
-        return ready;
-    }
-
-
-    public boolean isRunning() {
-        return running;
-    }
-
     public SdncDmaapConsumer() {
 
     }
@@ -60,6 +51,14 @@ public abstract class SdncDmaapConsumer implements Runnable {
         init(properties, propertiesPath);
     }
 
+    public boolean isReady() {
+        return ready;
+    }
+
+    public boolean isRunning() {
+        return running;
+    }
+
     public String getProperty(String name) {
         return properties.getProperty(name, "");
     }