From 708ec3193c3fb7550158dbb75c76ea0c5648ff45 Mon Sep 17 00:00:00 2001 From: dhaura Date: Wed, 21 Aug 2024 19:26:36 +0530 Subject: [PATCH] Add error enum for validating login_hint attribute. --- .../service/constant/OrganizationManagementConstants.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/components/org.wso2.carbon.identity.organization.management.service/src/main/java/org/wso2/carbon/identity/organization/management/service/constant/OrganizationManagementConstants.java b/components/org.wso2.carbon.identity.organization.management.service/src/main/java/org/wso2/carbon/identity/organization/management/service/constant/OrganizationManagementConstants.java index f86c0411..1a78b20d 100644 --- a/components/org.wso2.carbon.identity.organization.management.service/src/main/java/org/wso2/carbon/identity/organization/management/service/constant/OrganizationManagementConstants.java +++ b/components/org.wso2.carbon.identity.organization.management.service/src/main/java/org/wso2/carbon/identity/organization/management/service/constant/OrganizationManagementConstants.java @@ -728,7 +728,10 @@ public enum ErrorMessages { "%s in organization with ID: %s"), ERROR_CODE_ERROR_RETRIEVING_ORGANIZATIONS_META_ATTRIBUTES("65139", "Unable to retrieve " + "the organizations' meta attributes.", "Server encountered an error while retrieving " + - "the organizations' meta attributes."); + "the organizations' meta attributes."), + ERROR_CODE_ERROR_VALIDATING_ORGANIZATION_LOGIN_HINT_ATTRIBUTE("65140", "Unable to validate the " + + "login hint attribute.", "Server encountered an error while validating the " + + "login hint attribute."); private final String code; private final String message;