aboutsummaryrefslogtreecommitdiffstats
path: root/dmaap-listener/src/main/java
diff options
context:
space:
mode:
authorroot1 <srinivasa.mohan@huawei.com>2017-12-19 19:02:44 +0530
committerSRINIVAS V <srinivasa.mohan@huawei.com>2017-12-21 09:27:16 +0000
commit0d27d85eb387bd56b1f8dab34a9381bcc20db7d5 (patch)
tree709b37ee4c12fccb44e0ceea17c26296daaa4df8 /dmaap-listener/src/main/java
parentac68c31943b5a93c1a9e0d7e64d24455d9eb97e6 (diff)
Fixed as per Java Code Conventions
Change-Id: Ib17c601ad6a2999e4396f84e18831b5f907557eb Issue-ID: CCSDK-151 Signed-off-by: SRINIVAS V <srinivasa.mohan@huawei.com>
Diffstat (limited to 'dmaap-listener/src/main/java')
-rw-r--r--dmaap-listener/src/main/java/org/onap/ccsdk/sli/northbound/dmaapclient/SdncDmaapConsumer.java19
1 files changed, 9 insertions, 10 deletions
diff --git a/dmaap-listener/src/main/java/org/onap/ccsdk/sli/northbound/dmaapclient/SdncDmaapConsumer.java b/dmaap-listener/src/main/java/org/onap/ccsdk/sli/northbound/dmaapclient/SdncDmaapConsumer.java
index a51ea7c8..ed71337a 100644
--- a/dmaap-listener/src/main/java/org/onap/ccsdk/sli/northbound/dmaapclient/SdncDmaapConsumer.java
+++ b/dmaap-listener/src/main/java/org/onap/ccsdk/sli/northbound/dmaapclient/SdncDmaapConsumer.java
@@ -44,15 +44,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() {
}
@@ -61,8 +52,16 @@ 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, ""));
+ return properties.getProperty(name, "");
}
public void init(Properties properties, String propertiesPath) {