JDBCConfigurationImpl.clone() butchers passwords
------------------------------------------------

                 Key: OPENJPA-1534
                 URL: https://issues.apache.org/jira/browse/OPENJPA-1534
             Project: OpenJPA
          Issue Type: Bug
    Affects Versions: 2.0.0-beta
            Reporter: Laird Nelson


Cloning a JDBCConfigurationImpl instance results in getConnectionPassword() 
returning a bogus password.

To test, do:

  final JDBCConfigurationImpl c = new JDBCConfigurationImpl();
  c.setConnectionPassword("abc");
  final JDBCConfigurationImpl c2 = (JDBCConfigurationImpl)c.clone();
  assert c2 != null;
  assert c2.getConnectionPassword().equals(c.getConnectionPassword()); // this 
fails

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to