Пример #1
0
 @Override
 public ConnectionInfo clone() throws CloneNotSupportedException {
   ConnectionInfo clone = (ConnectionInfo) super.clone();
   clone.prop = (Properties) prop.clone();
   clone.filePasswordHash = Utils.cloneByteArray(filePasswordHash);
   clone.fileEncryptionKey = Utils.cloneByteArray(fileEncryptionKey);
   clone.userPasswordHash = Utils.cloneByteArray(userPasswordHash);
   return clone;
 }