From d40a682d52739b1a6d3314382b6dbf561505c356 Mon Sep 17 00:00:00 2001 From: JeethJJ Date: Mon, 13 Nov 2023 17:11:45 +0530 Subject: [PATCH] Remove V2 from passwordExpiry config name. --- .../password/expiry/constants/PasswordPolicyConstants.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/org.wso2.carbon.identity.password.expiry/src/main/java/org/wso2/carbon/identity/password/expiry/constants/PasswordPolicyConstants.java b/components/org.wso2.carbon.identity.password.expiry/src/main/java/org/wso2/carbon/identity/password/expiry/constants/PasswordPolicyConstants.java index 31d59b8e43..92b16d0ef4 100644 --- a/components/org.wso2.carbon.identity.password.expiry/src/main/java/org/wso2/carbon/identity/password/expiry/constants/PasswordPolicyConstants.java +++ b/components/org.wso2.carbon.identity.password.expiry/src/main/java/org/wso2/carbon/identity/password/expiry/constants/PasswordPolicyConstants.java @@ -44,8 +44,8 @@ public class PasswordPolicyConstants { "Allow users to reset the password after configured number of days"; public static final String CONNECTOR_CONFIG_SUB_CATEGORY = "DEFAULT"; public static final String PASSWORD_EXPIRED_ERROR_MESSAGE = "Password has expired"; - public static final String CONNECTOR_CONFIG_NAME = "passwordExpiryV2"; - public static final String CONNECTOR_CONFIG_FRIENDLY_NAME = "Password Expiry v2"; + public static final String CONNECTOR_CONFIG_NAME = "passwordExpiry"; + public static final String CONNECTOR_CONFIG_FRIENDLY_NAME = "Password Expiry"; public static final String CONNECTOR_CONFIG_CATEGORY = "Password Policies"; public static final String PASSWORD_GRANT_POST_AUTHENTICATION_EVENT = "PASSWORD_GRANT_POST_AUTHENTICATION"; public static final String AUTHENTICATION_STATUS = "authenticationStatus";