diff options
author | Patrick Brady <patrick.brady@att.com> | 2019-02-01 12:18:10 -0800 |
---|---|---|
committer | Takamune Cho <takamune.cho@att.com> | 2019-02-01 21:50:14 +0000 |
commit | 47e8eed7c3b402827c7a62e0c2ec9489d6dfabc5 (patch) | |
tree | 280ae0280d7fc367668620df580036847a60930d /appc-core | |
parent | 153172c09ca73be1b881e4dca229c5d91c660365 (diff) |
Update rest return parameters
Change-Id: If5d860a37a87ac0feb6452173cf147bbafa079b3
Signed-off-by: Patrick Brady <patrick.brady@att.com>
Issue-ID: APPC-1381
Diffstat (limited to 'appc-core')
-rw-r--r-- | appc-core/appc-common-bundle/src/main/java/org/onap/appc/Constants.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/appc-core/appc-common-bundle/src/main/java/org/onap/appc/Constants.java b/appc-core/appc-common-bundle/src/main/java/org/onap/appc/Constants.java index 5fab6bb31..80904ca31 100644 --- a/appc-core/appc-common-bundle/src/main/java/org/onap/appc/Constants.java +++ b/appc-core/appc-common-bundle/src/main/java/org/onap/appc/Constants.java @@ -58,19 +58,19 @@ public final class Constants { * The name for the error message to be set in the context */ @SuppressWarnings("nls") - public static final String CONTEXT_ERROR_MESSAGE = "org.openecomp.rest.result.message"; + public static final String CONTEXT_ERROR_MESSAGE = "org.onap.rest.result.message"; @SuppressWarnings("nls") - public static final String CONTEXT_AGENT_ERROR_MESSAGE = "org.openecomp.rest.agent.result.message"; + public static final String CONTEXT_AGENT_ERROR_MESSAGE = "org.onap.rest.agent.result.message"; /** * The name for the error code to be set in the context */ @SuppressWarnings("nls") - public static final String CONTEXT_ERROR_CODE = "org.openecomp.rest.result.code"; + public static final String CONTEXT_ERROR_CODE = "org.onap.rest.result.code"; @SuppressWarnings("nls") - public static final String CONTEXT_AGENT_ERROR_CODE = "org.openecomp.rest.agent.result.code"; + public static final String CONTEXT_AGENT_ERROR_CODE = "org.onap.rest.agent.result.code"; /** * The name for the success message attribute to be set in the context |