aboutsummaryrefslogtreecommitdiffstats
path: root/status-control
diff options
context:
space:
mode:
authorramanjaneya <ramanjaneya.palleti@huawei.com>2017-09-28 08:04:23 +0530
committerSeshu Kumar M <seshu.kumar.m@huawei.com>2017-10-03 07:48:16 +0000
commitff5f90a78c6a05d6542d3235372c8de5aa4299b2 (patch)
treed52b3deb748b121fb922fd02e60a90555b654a34 /status-control
parentdf7aa9c0da625cc734f3ee347f6d1f0a19e8f87c (diff)
Reorder the modifiers and Removed unused imports
Change-Id: I9a2f1cf6ece783e64a31ac5927d234981e0f0461 Issue-Id:SO-118 Signed-off-by: ramanjaneya <ramanjaneya.palleti@huawei.com>
Diffstat (limited to 'status-control')
-rw-r--r--status-control/src/main/java/org/openecomp/mso/HealthCheckUtils.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/status-control/src/main/java/org/openecomp/mso/HealthCheckUtils.java b/status-control/src/main/java/org/openecomp/mso/HealthCheckUtils.java
index b098a8c852..62ce791f40 100644
--- a/status-control/src/main/java/org/openecomp/mso/HealthCheckUtils.java
+++ b/status-control/src/main/java/org/openecomp/mso/HealthCheckUtils.java
@@ -39,7 +39,7 @@ import javax.ws.rs.core.Response;
public class HealthCheckUtils {
private static MsoLogger msoLogger = MsoLogger.getMsoLogger(MsoLogger.Catalog.GENERAL);
- private final static String MSO_PROP_TOPOLOGY = "MSO_PROP_TOPOLOGY";
+ private static final String MSO_PROP_TOPOLOGY = "MSO_PROP_TOPOLOGY";
private static MsoPropertiesFactory msoPropertiesFactory = new MsoPropertiesFactory();
private static final String CHECK_HTML = "<!DOCTYPE html><html><head><meta charset=\"ISO-8859-1\"><title>Health Check</title></head><body>Application ready</body></html>";
private static final String NOT_FOUND = "<!DOCTYPE html><html><head><meta charset=\"ISO-8859-1\"><title>Application Not Started</title></head><body>Application not started. Properties file missing or invalid or database Connection failed</body></html>";
@@ -289,4 +289,4 @@ public class HealthCheckUtils {
return "http://" + ip + ":" + port + url;
}
}
-} \ No newline at end of file
+}