Reorder the modifiers and Removed unused imports 73/16173/2
authorramanjaneya <ramanjaneya.palleti@huawei.com>
Thu, 28 Sep 2017 02:34:23 +0000 (08:04 +0530)
committerSeshu Kumar M <seshu.kumar.m@huawei.com>
Tue, 3 Oct 2017 07:48:16 +0000 (07:48 +0000)
Change-Id: I9a2f1cf6ece783e64a31ac5927d234981e0f0461
Issue-Id:SO-118
Signed-off-by: ramanjaneya <ramanjaneya.palleti@huawei.com>
status-control/src/main/java/org/openecomp/mso/HealthCheckUtils.java

index b098a8c..62ce791 100644 (file)
@@ -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
+}