summaryrefslogtreecommitdiffstats
path: root/profiles
diff options
context:
space:
mode:
authorKanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com>2018-04-26 10:28:02 +0530
committerKanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com>2018-04-26 11:38:06 +0530
commit128f3cfe7cbaf1139240a0e597f2d2f60c6e1a42 (patch)
tree5de55996eebe9bd1c7fc05546a5743b7f2602250 /profiles
parent9a2c447052ea28083c0468ccb8825c5b5e332a59 (diff)
Add default private constructor for Constant class
Issue-ID: CLI-100 Change-Id: Ic9c3394ba3a12c2db8686dcc9a5f0b0a4360a5a1 Signed-off-by: Kanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com>
Diffstat (limited to 'profiles')
-rw-r--r--profiles/http/src/main/java/org/onap/cli/fw/http/conf/OnapCommandHttpConstants.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/profiles/http/src/main/java/org/onap/cli/fw/http/conf/OnapCommandHttpConstants.java b/profiles/http/src/main/java/org/onap/cli/fw/http/conf/OnapCommandHttpConstants.java
index 18dde339..d6e8fad3 100644
--- a/profiles/http/src/main/java/org/onap/cli/fw/http/conf/OnapCommandHttpConstants.java
+++ b/profiles/http/src/main/java/org/onap/cli/fw/http/conf/OnapCommandHttpConstants.java
@@ -109,6 +109,10 @@ public class OnapCommandHttpConstants {
public static final String VERIFY_CONTENT_TYPE = "Content-Type";
public static final String VERIFY_CONTENT_TYPE_VALUE = APPLICATION_JSON;
public static final String VERIFY_DISABLE_MOCKING = "DISABLE_MOCKING";
+
+ private OnapCommandHttpConstants() {
+ //as per coding standard !
+ }
}