96979899100101102103104
public void setPassword(String password) { if (hasText(password)) { try { this.password = SHA1(salt, password); } catch (Exception e) { throw new OSSMoneyException(e); } } }