我有一個包含電子郵件,角色和密碼的用戶類。帶有對象和其他參數的Java中的可編輯接口
而我有一個方法來找到數據庫中的所有用戶我的道。
我需要做一個與zk的接口來驗證密碼兩次。
我做一個viewModel類與用戶和字符串重新輸入密碼。
和Y在做一個視圖模型
public class UserViewModel {
private Users user;
private String retypedPassword;
public UserViewModel(Users user, String retypedPassword) {
this.user = user;
this.retypedPassword = retypedPassword;
}
public Users getUser() {
return user;
}
public void setUser(Users user) {
this.user = user;
}
public String getRetypedPassword() {
return retypedPassword;
}
public void setRetypedPassword(String retypedPassword) {
this.retypedPassword = retypedPassword;
}
}
,現在我intenting我列出的所有用戶做的編輯界面。
但我不創建和反對ViewModel與我所有的用戶和retypePassword。
因爲我得到我的所有用戶提供:
List<Users> usersList = UsersDAO.getUsers();
我的編輯界面中,就像:http://www.zkoss.org/zkdemo/grid/inline_row_editing
但隨着我的數據庫中的用戶,我需要驗證密碼兩次。
你能幫我嗎?
不相關的問題,但使用的'的char []''而不是String'用於密碼存儲。[爲什麼字符首選字符串密碼](http://stackoverflow.com/questions/8881291/why-is-char-preferred-over-string-for-passwords) – nachokk