Example #1
0
 /**
  * Sets the last login date.
  *
  * @param newVal the new last login date
  */
 public void setLastLoginDate(Date newVal) {
   lastLoginDate = ClonUtils.getClon(newVal);
 }
Example #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);
 }
Example #3
0
 /**
  * Gets the last login date.
  *
  * @return the last login date
  */
 public Date getLastLoginDate() {
   return ClonUtils.getClon(lastLoginDate);
 }
Example #4
0
 /**
  * Gets the password last modified date.
  *
  * @return the password last modified date
  */
 public Date getPasswordLastModifiedDate() {
   return ClonUtils.getClon(passwordLastModifiedDate);
 }
Example #5
0
 /**
  * Sets the record date.
  *
  * @param recordDate the new record date
  */
 public void setRecordDate(Date recordDate) {
   this.recordDate = ClonUtils.getClon(recordDate);
 }
Example #6
0
 /**
  * Gets the record date.
  *
  * @return the record date
  */
 public Date getRecordDate() {
   return ClonUtils.getClon(recordDate);
 }
Example #7
0
 /**
  * Sets the date.
  *
  * @param date the new date
  */
 public void setDate(Date date) {
   this.date = ClonUtils.getClon(date);
 }
Example #8
0
 /**
  * Gets the date.
  *
  * @return the date
  */
 public Date getDate() {
   return ClonUtils.getClon(date);
 }