diff options
author | talio <tali.orenbach@amdocs.com> | 2019-04-21 12:43:15 +0300 |
---|---|---|
committer | tali orenbach <tali.orenbach@amdocs.com> | 2019-04-21 12:57:34 +0000 |
commit | 521000b2278eaf9fb1e57533e523014da1900098 (patch) | |
tree | 2aef25ddbc1a684e49315fd1ecadfa58c2f0bbf1 /catalog-be/src/main/resources | |
parent | 04aecc5c84e2b2f4c59ec86850d6bcd25d3bc912 (diff) |
Fix property name regex
property name should contain only letters, numbers and / or underscores
Change-Id: Ic6b8d627a30f5f157bed1617a8af819b66352136
Issue-ID: SDC-2243
Signed-off-by: talio <tali.orenbach@amdocs.com>
Diffstat (limited to 'catalog-be/src/main/resources')
-rw-r--r-- | catalog-be/src/main/resources/config/error-configuration.yaml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/catalog-be/src/main/resources/config/error-configuration.yaml b/catalog-be/src/main/resources/config/error-configuration.yaml index 312d90c307..f9e5407e30 100644 --- a/catalog-be/src/main/resources/config/error-configuration.yaml +++ b/catalog-be/src/main/resources/config/error-configuration.yaml @@ -2268,4 +2268,10 @@ errors: code: 400, message: "Error: Invalid property values provided:\n %1", messageId: "SVC4735" + } +#---------SVC4727------------------------------ + INVALID_PROPERTY_NAME: { + code: 400, + message: "Error: Property name contains invalid characters. It should have only letters, numbers and underscores.", + messageId: "SVC4727" }
\ No newline at end of file |