Esempio n. 1
0
 /**
  * Sets the last login date.
  *
  * @param newVal the new last login date
  */
 public void setLastLoginDate(Date newVal) {
   lastLoginDate = ClonUtils.getClon(newVal);
 }
Esempio n. 2
0
 /**
  * Sets the password last modified date.
  *
  * @param passwordLastModifiedDate the new password last modified date
  */
 public void setPasswordLastModifiedDate(Date passwordLastModifiedDate) {
   this.passwordLastModifiedDate = ClonUtils.getClon(passwordLastModifiedDate);
 }
Esempio n. 3
0
 /**
  * Gets the last login date.
  *
  * @return the last login date
  */
 public Date getLastLoginDate() {
   return ClonUtils.getClon(lastLoginDate);
 }
Esempio n. 4
0
 /**
  * Gets the password last modified date.
  *
  * @return the password last modified date
  */
 public Date getPasswordLastModifiedDate() {
   return ClonUtils.getClon(passwordLastModifiedDate);
 }
Esempio n. 5
0
 /**
  * Sets the record date.
  *
  * @param recordDate the new record date
  */
 public void setRecordDate(Date recordDate) {
   this.recordDate = ClonUtils.getClon(recordDate);
 }
Esempio n. 6
0
 /**
  * Gets the record date.
  *
  * @return the record date
  */
 public Date getRecordDate() {
   return ClonUtils.getClon(recordDate);
 }
Esempio n. 7
0
 /**
  * Sets the date.
  *
  * @param date the new date
  */
 public void setDate(Date date) {
   this.date = ClonUtils.getClon(date);
 }
Esempio n. 8
0
 /**
  * Gets the date.
  *
  * @return the date
  */
 public Date getDate() {
   return ClonUtils.getClon(date);
 }