accountExpired seems to make more sense than accountNotExpired. If you
want to use the later, isExpired=false seemes to make more sense.
Matt
On Fri, Sep 12, 2008 at 2:30 AM, Gordian Yuan <[EMAIL PROTECTED]> wrote:
> hi all,
> i read the appfuse source and i have some doubt in org.appfuse.model.U
hi all,
i read the appfuse source and i have some doubt in org.appfuse.model.User
@Column(name="account_expired",nullable=false)
public boolean isAccountExpired() {
return accountExpired;
}
@Transient
public boolean isAccountNonExpired() {
return !isAccountExpired();
}
i try