diff options
author | Seshu Kumar M <seshu.kumar.m@huawei.com> | 2019-04-21 16:58:21 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-04-21 16:58:21 +0000 |
commit | 20a4e8a943a3b776b89d78e05fff78561cc6b142 (patch) | |
tree | ff9d5713dc00c3bddc22ae35e774408388e74732 /mso-api-handlers/mso-api-handler-common/src/main | |
parent | 9b11ba0c48d2c9440675f0794be36e50f7f8ff0b (diff) | |
parent | 8bcc5ceefa301cd5a11257606e8029db73ca66ba (diff) |
Merge "Reallocate Constructor call"
Diffstat (limited to 'mso-api-handlers/mso-api-handler-common/src/main')
-rw-r--r-- | mso-api-handlers/mso-api-handler-common/src/main/java/org/onap/so/apihandlerinfra/Constants.java | 4 |
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() {} + } |