diff options
author | shrek2000 <orenkle@amdocs.com> | 2018-04-24 16:46:33 +0300 |
---|---|---|
committer | Vitaly Emporopulo <Vitaliy.Emporopulo@amdocs.com> | 2018-04-25 14:22:16 +0000 |
commit | d71a8de8c7b688eabb250e524dc4f6000b3233b6 (patch) | |
tree | 38c550f0f78084cd19c79e997f5a5ece37751bd5 /catalog-be/src/main/resources | |
parent | ad3c41b5693b4f0b2a151e9c3221551e24f8264d (diff) |
Delete workflow artifact and add artifact to CSAR
Added delete artifact codes, add artifact to CSAR and refactored operation Business logic.
Change-Id: Iaad3f26795633076d1362bfd33631acc9fcf7aa1
Issue-ID: SDC-1060
Signed-off-by: shrek2000 <orenkle@amdocs.com>
Diffstat (limited to 'catalog-be/src/main/resources')
-rw-r--r-- | catalog-be/src/main/resources/config/error-configuration.yaml | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/catalog-be/src/main/resources/config/error-configuration.yaml b/catalog-be/src/main/resources/config/error-configuration.yaml index b0f2e2107f..de5196e11e 100644 --- a/catalog-be/src/main/resources/config/error-configuration.yaml +++ b/catalog-be/src/main/resources/config/error-configuration.yaml @@ -2060,9 +2060,9 @@ errors: messageId: "SVC4698" } #---------SVC4699----------------------------- - INTERFACE_OPERATION_INPUT_NAME_INVALID: { + INTERFACE_OPERATION_INPUT_NAME_ALREADY_IN_USE: { code: 400, - message: "Error: Interface Operation input parameter names %1 are invalid ,Input parameters name should be unique", + message: "Error: Interface Operation input parameter names %1 already in use", messageId: "SVC4699" } #---------SVC4700----------------------------- @@ -2084,3 +2084,17 @@ errors: message: "Error: Failed to delete interface operation.", messageId: "SVC4702" } +#---------SVC4703----------------------------- +# %1 – asset type [service / resource ] +# %2 – main asset uuid + ERROR_DURING_CSAR_CREATION: { + code: 404, + message: "Error: CSAR packaging failed for %1 %2.", + messageId: "SVC4702" + } +#---------SVC46703----------------------------- + INTERFACE_OPERATION_INPUT_NAME_MANDATORY: { + code: 404, + message: "Error: Interface operation input parameter name should not be empty", + messageId: "SVC46703" + } |