From f80989972a4aebaa2d3c8f1c214ed0d16da5365c Mon Sep 17 00:00:00 2001 From: Jalina2007 Date: Tue, 14 Oct 2025 12:01:15 +0530 Subject: [PATCH] [PRODUCT-IS-24935] Change Connection Name input field to Username in JDBC Connection Dialog --- .../org/wso2/carbon/user/core/jdbc/JDBCUserStoreConstants.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/org.wso2.carbon.user.core/src/main/java/org/wso2/carbon/user/core/jdbc/JDBCUserStoreConstants.java b/core/org.wso2.carbon.user.core/src/main/java/org/wso2/carbon/user/core/jdbc/JDBCUserStoreConstants.java index c4db67ed0cb..864bd103aaf 100644 --- a/core/org.wso2.carbon.user.core/src/main/java/org/wso2/carbon/user/core/jdbc/JDBCUserStoreConstants.java +++ b/core/org.wso2.carbon.user.core/src/main/java/org/wso2/carbon/user/core/jdbc/JDBCUserStoreConstants.java @@ -62,7 +62,7 @@ public class JDBCUserStoreConstants { //setMandatoryProperty setMandatoryProperty(JDBCRealmConstants.URL, "Connection URL", "", "URL of the user store database", false, new Property[] { CONNECTION.getProperty(), STRING.getProperty(), TRUE.getProperty() }); - setMandatoryProperty(JDBCRealmConstants.USER_NAME, "Connection Name", "", "Username for the database", false, + setMandatoryProperty(JDBCRealmConstants.USER_NAME, "Username", "", "Username for the database", false, new Property[] { CONNECTION.getProperty(), STRING.getProperty(), TRUE.getProperty() }); setMandatoryProperty(JDBCRealmConstants.PASSWORD, "Connection Password", "", "Password for the database", true, new Property[] { CONNECTION.getProperty(), PASSWORD.getProperty(), TRUE.getProperty() });