aboutsummaryrefslogtreecommitdiffstats
path: root/mso-api-handlers/mso-api-handler-common/src
diff options
context:
space:
mode:
authorSindhuri.A <arcot.sindhuri@huawei.com>2019-04-21 13:27:53 +0530
committerSindhuri.A <arcot.sindhuri@huawei.com>2019-04-21 13:27:53 +0530
commit8bcc5ceefa301cd5a11257606e8029db73ca66ba (patch)
tree3f005f4af019d893da250e1231b24a60b593dc2a /mso-api-handlers/mso-api-handler-common/src
parent0a355f91e1da586f70450329d8620b823d59b9e5 (diff)
Reallocate Constructor call
Reallocate Constructor call api handler common Constants class Issue-ID: SO-1490 Change-Id: I07ec6ca98019860105361f622a792abdf726f30b Signed-off-by: Sindhuri.A <arcot.sindhuri@huawei.com>
Diffstat (limited to 'mso-api-handlers/mso-api-handler-common/src')
-rw-r--r--mso-api-handlers/mso-api-handler-common/src/main/java/org/onap/so/apihandlerinfra/Constants.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/mso-api-handlers/mso-api-handler-common/src/main/java/org/onap/so/apihandlerinfra/Constants.java b/mso-api-handlers/mso-api-handler-common/src/main/java/org/onap/so/apihandlerinfra/Constants.java
index 0bbc3e336f..7cf2046646 100644
--- a/mso-api-handlers/mso-api-handler-common/src/main/java/org/onap/so/apihandlerinfra/Constants.java
+++ b/mso-api-handlers/mso-api-handler-common/src/main/java/org/onap/so/apihandlerinfra/Constants.java
@@ -23,8 +23,6 @@ package org.onap.so.apihandlerinfra;
public class Constants {
- private Constants() {}
-
public static final String REQUEST_ID_PATH = "/{request-id}";
public static final String STATUS_SUCCESS = "SUCCESS";
@@ -50,4 +48,6 @@ public class Constants {
public final static String SERVICE_INSTANTIATION_PATH = "/serviceInstantiation";
public final static String ORCHESTRATION_REQUESTS_PATH = "/orchestrationRequests";
+ private Constants() {}
+
}