aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Timoney <dtimoney@att.com>2018-12-11 17:28:15 +0000
committerGerrit Code Review <gerrit@onap.org>2018-12-11 17:28:15 +0000
commit7bc692d1e29df8523c2ce170aa4f3bc1cd1109bb (patch)
treeb8f04dab92bcc7b65dbc0c41c2feedbb7f73c0c6
parent22818d31e0d2cc606932afaa3e353c3da2a317a9 (diff)
parentd5a662c40d5feb13810b2191eedcd34bde61fea3 (diff)
Merge "Sonar Fix: TemplateNode.java"
-rw-r--r--template-node/provider/src/main/java/org/onap/ccsdk/sli/plugins/template/TemplateNode.java7
1 files changed, 4 insertions, 3 deletions
diff --git a/template-node/provider/src/main/java/org/onap/ccsdk/sli/plugins/template/TemplateNode.java b/template-node/provider/src/main/java/org/onap/ccsdk/sli/plugins/template/TemplateNode.java
index 8a967681..0b5850a0 100644
--- a/template-node/provider/src/main/java/org/onap/ccsdk/sli/plugins/template/TemplateNode.java
+++ b/template-node/provider/src/main/java/org/onap/ccsdk/sli/plugins/template/TemplateNode.java
@@ -4,6 +4,7 @@
* ================================================================================
* Copyright (C) 2017 AT&T Intellectual Property. All rights
* reserved.
+ * Modifications Copyright © 2018 IBM.
* ================================================================================
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -37,9 +38,9 @@ import org.slf4j.LoggerFactory;
public class TemplateNode implements SvcLogicJavaPlugin {
private static final Logger logger = LoggerFactory.getLogger(TemplateNode.class);
- public final static String TEMPLATE_PATH = "templatePath";
- public final static String OUTPUT_PATH_KEY = "output";
- public final static String PREFIX_KEY = "prefix";
+ public static final String TEMPLATE_PATH = "templatePath";
+ public static final String OUTPUT_PATH_KEY = "output";
+ public static final String PREFIX_KEY = "prefix";
public final static String REQUIRED_PARAMETERS_ERROR_MESSAGE = "templateName & outputPath are required fields";
protected static final String TEMPLATE_PROPERTIES_FILE_NAME = "template-node.properties";
protected static final String DEFAULT_PROPERTIES_DIR = "/opt/onap/ccsdk/data/properties";