/** * Sets the last login date. * * @param newVal the new last login date */ public void setLastLoginDate(Date newVal) { lastLoginDate = ClonUtils.getClon(newVal); }
/** * Sets the password last modified date. * * @param passwordLastModifiedDate the new password last modified date */ public void setPasswordLastModifiedDate(Date passwordLastModifiedDate) { this.passwordLastModifiedDate = ClonUtils.getClon(passwordLastModifiedDate); }
/** * Gets the last login date. * * @return the last login date */ public Date getLastLoginDate() { return ClonUtils.getClon(lastLoginDate); }
/** * Gets the password last modified date. * * @return the password last modified date */ public Date getPasswordLastModifiedDate() { return ClonUtils.getClon(passwordLastModifiedDate); }
/** * Sets the record date. * * @param recordDate the new record date */ public void setRecordDate(Date recordDate) { this.recordDate = ClonUtils.getClon(recordDate); }
/** * Gets the record date. * * @return the record date */ public Date getRecordDate() { return ClonUtils.getClon(recordDate); }
/** * Sets the date. * * @param date the new date */ public void setDate(Date date) { this.date = ClonUtils.getClon(date); }
/** * Gets the date. * * @return the date */ public Date getDate() { return ClonUtils.getClon(date); }