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