From e7dfc47fc893cc6aef80f795bd675f8443864550 Mon Sep 17 00:00:00 2001 From: aribeiro Date: Mon, 30 Sep 2019 11:04:00 +0100 Subject: Fix for error message. Fixing error message for invalid values across SDC backend API. Issue-ID: SDC-2324 Change-Id: If01307138baf7692e398abf20eb75bbe9a8aa394 Signed-off-by: aribeiro --- catalog-be/src/main/resources/config/error-configuration.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'catalog-be/src/main/resources/config/error-configuration.yaml') diff --git a/catalog-be/src/main/resources/config/error-configuration.yaml b/catalog-be/src/main/resources/config/error-configuration.yaml index adc467c913..3045e9ec97 100644 --- a/catalog-be/src/main/resources/config/error-configuration.yaml +++ b/catalog-be/src/main/resources/config/error-configuration.yaml @@ -152,7 +152,7 @@ errors: # %1 - resource/service COMPONENT_INVALID_CATEGORY: { code: 400, - message: "Error: Invalid Content. Invalid %1 category.", + message: "Error: Invalid Content. Value %1 for the field Category is invalid.", messageId: "SVC4054" } #---------SVC4055------------------------------ @@ -265,20 +265,20 @@ errors: # %1 - Service/Resource INVALID_COMPONENT_NAME: { code: 400, - message: 'Error: Invalid Content. %1 name is not allowed to contain characters like <>:"\/|?* and space characters other than regular space.', + message: 'Error: Invalid Content. Value %1 for Component name is invalid. Only alphanumeric characters and regular spaces are allowed.', messageId: "SVC4070" } #---------SVC4071------------------------------ INVALID_VENDOR_NAME: { code: 400, - message: 'Error: Invalid Content. Vendor name is not allowed to contain characters like <>:"\/|?* and space characters other than regular space.', + message: 'Error: Invalid Content. Value %1 for the field Vendor name is invalid. Only alphanumeric characters and regular spaces are allowed.', messageId: "SVC4071" } #---------SVC4072------------------------------ INVALID_VENDOR_RELEASE: { code: 400, - message: 'Error: Invalid Content. Vendor release is not allowed to contain characters like <>:"\/|?* and space characters other than regular space.', + message: 'Error: Invalid Content. Value %1 for the field Vendor release is invalid. Only alphanumeric characters and regular spaces are allowed.', messageId: "SVC4072" } #---------SVC4073------------------------------ -- cgit 1.2.3-korg