diff options
author | mojahidi <mojahidul.islam@amdocs.com> | 2018-03-15 18:45:49 +0530 |
---|---|---|
committer | Vitaly Emporopulo <Vitaliy.Emporopulo@amdocs.com> | 2018-03-25 12:32:47 +0000 |
commit | 5b0a36454780e8f29df5c7f2c0da91efc62e89a6 (patch) | |
tree | 43d979db3dba82428fa15363eb46c0e628395c16 /catalog-be/src/main/resources | |
parent | 4cc1b4508c04bfa71f7d7684050911d6372cc634 (diff) |
Added validation for Interface Operation
Added validation for interface Operation, added input parameter names
validation
Change-Id: Ib02ec89f7fb53bd08481631c705c9f15757bf768
Issue-ID: SDC-1060
Signed-off-by: mojahidi <mojahidul.islam@amdocs.com>
Diffstat (limited to 'catalog-be/src/main/resources')
-rw-r--r-- | catalog-be/src/main/resources/config/error-configuration.yaml | 54 |
1 files changed, 53 insertions, 1 deletions
diff --git a/catalog-be/src/main/resources/config/error-configuration.yaml b/catalog-be/src/main/resources/config/error-configuration.yaml index 56d0e74b73..56eaaea830 100644 --- a/catalog-be/src/main/resources/config/error-configuration.yaml +++ b/catalog-be/src/main/resources/config/error-configuration.yaml @@ -2031,4 +2031,56 @@ errors: message: "Error: External Reference '%1' was not found.", messageId: "SVC4694" } - +#---------SVC4695----------------------------- +# %1 - Interface operation type + INTERFACE_OPERATION_TYPE_ALREADY_IN_USE: { + code: 400, + message: "Error: Interface Operation type %1 already in use", + messageId: "SVC4695" + } +#---------SVC4696----------------------------- +# %1 - workflow operation type + INTERFACE_OPERATION_TYPE_INVALID: { + code: 400, + message: "Error: Interface Operation type %1 is Invalid, Operation type should not contain + Special character, space and should not be greater than 200 characters ", + messageId: "SVC4696" + } +#---------SVC4697----------------------------- + INTERFACE_OPERATION_TYPE_MANDATORY: { + code: 404, + message: "Error: Interface Operation type is mandatory, Operation type can't be empty", + messageId: "SVC4697" + } +#---------SVC4698----------------------------- +# %1 - workflow operation description + INTERFACE_OPERATION_DESCRIPTION_MAX_LENGTH: { + code: 400, + message: "Error: Interface Operation description %1 is invalid, maximum 200 characters allowed", + messageId: "SVC4698" + } +#---------SVC4699----------------------------- + INTERFACE_OPERATION_INPUT_NAME_INVALID: { + code: 400, + message: "Error: Interface Operation input parameter names %1 are invalid ,Input parameters name should be unique", + messageId: "SVC4699" + } +#---------SVC4700----------------------------- + INTERFACE_OPERATION_OUTPUT_NAME_INVALID: { + code: 400, + message: "Error: Interface Operation output parameters invalid, should be unique and mandatory", + messageId: "SVC4700" + } +#---------SVC4701----------------------------- +# %1 - resource Id + INTERFACE_OPERATION_NOT_FOUND: { + code: 404, + message: "Error: Interface operations not found in the resource %1", + messageId: "SVC4701" + } +#---------SVC46702----------------------------- + INTERFACE_OPERATION_NOT_DELETED: { + code: 404, + message: "Error: Failed to delete interface operation.", + messageId: "SVC4702" + } |