From cc78e0cd74b11e96d3f9c3e9fa60a7330c9f75b0 Mon Sep 17 00:00:00 2001 From: Tomasz Golabek Date: Wed, 21 Aug 2019 09:18:38 +0200 Subject: unit tests - sdc-common-rest Additional junit tests Change-Id: Ieeb6f02e1d5abf131882c530a0ba3a395d56c6cd Issue-ID: SDC-2326 Signed-off-by: Tomasz Golabek --- .../org/openecomp/sdcrests/errors/ZusammenExceptionMapper.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'openecomp-be/api/openecomp-sdc-rest-webapp/openecomp-sdc-common-rest/src/main/java/org/openecomp/sdcrests/errors') diff --git a/openecomp-be/api/openecomp-sdc-rest-webapp/openecomp-sdc-common-rest/src/main/java/org/openecomp/sdcrests/errors/ZusammenExceptionMapper.java b/openecomp-be/api/openecomp-sdc-rest-webapp/openecomp-sdc-common-rest/src/main/java/org/openecomp/sdcrests/errors/ZusammenExceptionMapper.java index 4100cc5bf7..abf6024701 100644 --- a/openecomp-be/api/openecomp-sdc-rest-webapp/openecomp-sdc-common-rest/src/main/java/org/openecomp/sdcrests/errors/ZusammenExceptionMapper.java +++ b/openecomp-be/api/openecomp-sdc-rest-webapp/openecomp-sdc-common-rest/src/main/java/org/openecomp/sdcrests/errors/ZusammenExceptionMapper.java @@ -33,15 +33,15 @@ import org.openecomp.sdc.logging.api.LoggerFactory; public class ZusammenExceptionMapper implements ExceptionMapper { private static final String ZUSAMMEN_DB_PREFIX = Module.ZDB + "-"; - private static final String VLM_VSP_VERSION_ID_DOES_NOT_EXISTS = + static final String VLM_VSP_VERSION_ID_DOES_NOT_EXISTS = ZUSAMMEN_DB_PREFIX + com.amdocs.zusammen.datatypes.response.ErrorCode.ZU_ITEM_VERSION_NOT_EXIST; - private static final String VLM_VSP_ITEM_ID_DOES_NOT_EXISTS = + static final String VLM_VSP_ITEM_ID_DOES_NOT_EXISTS = ZUSAMMEN_DB_PREFIX + com.amdocs.zusammen.datatypes.response.ErrorCode.ZU_ITEM_DOES_NOT_EXIST; - private static final String SUB_ENTITY_ID_DOES_NOT_EXISTS = + static final String SUB_ENTITY_ID_DOES_NOT_EXISTS = ZUSAMMEN_DB_PREFIX + com.amdocs.zusammen.datatypes.response.ErrorCode.ZU_ELEMENT_GET_INFO; - private static final String FAILED_TO_SYNC = + static final String FAILED_TO_SYNC = ZUSAMMEN_DB_PREFIX + com.amdocs.zusammen.datatypes.response.ErrorCode.ZU_ITEM_VERSION_SYNC; - private static final String FAILED_TO_PUBLISH_OUT_OF_SYNC = + static final String FAILED_TO_PUBLISH_OUT_OF_SYNC = ZUSAMMEN_DB_PREFIX + com.amdocs.zusammen.datatypes.response.ErrorCode .ZU_ITEM_VERSION_PUBLISH_NOT_ALLOWED; -- cgit 1.2.3-korg