Exemple #1
0
 /** @param addr2 the addr2 to set */
 public void setAddr2(String addr2) {
   this.addr2 = EncryptUtil.getInstance().decrypt(addr2);
 }
Exemple #2
0
 public void setMobile(String mobile) {
   this.mobile = EncryptUtil.getInstance().decrypt(mobile);
 }
Exemple #3
0
 /** @return the addr2 */
 public String getEncryptAddr2() {
   return EncryptUtil.getInstance().encrypt(addr2);
 }
Exemple #4
0
 public String getEncryptMobile() {
   return EncryptUtil.getInstance().encrypt(mobile);
 }
Exemple #5
0
 public void setTel(String tel) {
   this.tel = EncryptUtil.getInstance().decrypt(tel);
 }
Exemple #6
0
 public String getEncryptTel() {
   return EncryptUtil.getInstance().encrypt(tel);
 }
Exemple #7
0
 public void setIdn(String idn) {
   this.idn = EncryptUtil.getInstance().decrypt(idn);
   // this.idn = idn;
 }
Exemple #8
0
 public String getEncryptIdn() {
   return EncryptUtil.getInstance().encrypt(idn);
 }