Merge "Sonar Fix - added static for the fields"
authorThomas Nelson <nelson24@att.com>
Tue, 9 Jul 2019 14:48:20 +0000 (14:48 +0000)
committerGerrit Code Review <gerrit@onap.org>
Tue, 9 Jul 2019 14:48:20 +0000 (14:48 +0000)
src/main/java/org/onap/music/MusicApplication.java

index aa4de01..22c9e7b 100755 (executable)
@@ -55,9 +55,9 @@ import org.springframework.web.context.request.RequestContextListener;
 @EnableScheduling
 public class MusicApplication extends SpringBootServletInitializer {
 
-    private final String KEYSPACE_PATTERN = "/v2/keyspaces/*";
-    private final String LOCKS_PATTERN = "/v2/locks/*";
-    private final String Q_PATTERN = "/v2/priorityq/*";
+    private static final String KEYSPACE_PATTERN = "/v2/keyspaces/*";
+    private static final String LOCKS_PATTERN = "/v2/locks/*";
+    private static final String Q_PATTERN = "/v2/priorityq/*";
 
     @Autowired
     private PropertiesLoader propertyLoader;