diff options
author | Jakub Dudycz <jakub.dudycz@nokia.com> | 2018-01-25 16:34:05 +0100 |
---|---|---|
committer | Patrick Brady <pb071s@att.com> | 2018-01-25 20:20:43 +0000 |
commit | 5cbcbf25a4a4018abd1b4ccf2c1a85a3bece88a4 (patch) | |
tree | 74bb077d1d8d03141b1a542aee8caa787296e9d5 /appc-adapters/appc-netconf-adapter/appc-netconf-adapter-bundle/src | |
parent | 5665fb8e6245dfea75a4058a5e6236c7e56ac81c (diff) |
Constants refactor
Change-Id: Ibf2ad417c8c09d88222627d21b4c40216b3b3454
Issue-ID: APPC-521
Signed-off-by: Jakub Dudycz <jakub.dudycz@nokia.com>
Diffstat (limited to 'appc-adapters/appc-netconf-adapter/appc-netconf-adapter-bundle/src')
-rw-r--r-- | appc-adapters/appc-netconf-adapter/appc-netconf-adapter-bundle/src/main/java/org/onap/appc/adapter/netconf/util/Constants.java | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/appc-adapters/appc-netconf-adapter/appc-netconf-adapter-bundle/src/main/java/org/onap/appc/adapter/netconf/util/Constants.java b/appc-adapters/appc-netconf-adapter/appc-netconf-adapter-bundle/src/main/java/org/onap/appc/adapter/netconf/util/Constants.java index 86d175081..05cc5d777 100644 --- a/appc-adapters/appc-netconf-adapter/appc-netconf-adapter-bundle/src/main/java/org/onap/appc/adapter/netconf/util/Constants.java +++ b/appc-adapters/appc-netconf-adapter/appc-netconf-adapter-bundle/src/main/java/org/onap/appc/adapter/netconf/util/Constants.java @@ -26,9 +26,6 @@ package org.onap.appc.adapter.netconf.util; public class Constants { - private Constants() { - } - public static final String CONFIGURE_PATH = "/restconf/config/opendaylight-inventory:nodes/node/"; public static final String CONNECT_PATH = "/restconf/config/opendaylight-inventory:nodes/node/controller-config/yang-ext:mount/config:modules"; public static final String CHECK_CONNECTION_PATH = "/restconf/operational/opendaylight-inventory:nodes/node/"; @@ -68,4 +65,6 @@ public class Constants { public static final String ATTRIBUTE_ERROR_MESSAGE = "error-message"; public static final String DG_OUTPUT_STATUS_MESSAGE = "output.status.message"; + private Constants() { + } } |