[EMAIL PROTECTED] wrote on 10/05/2005 10:13:23 PM: > > Do you have the corresponding public getter and setter methods? (At least > getPassword() and setPassword())? Otherwise, this instance variable will > never be initialized.
Yes I do:
public HtmlInputSecret getPassword() {
return this.password;
}
public void setPassword(HtmlInputSecret password) {
this.password = password;
}
> Craig
>
Geeta

