[
https://issues.apache.org/jira/browse/OPENJPA-1534?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Rick Curtis closed OPENJPA-1534.
--------------------------------
Resolution: Not A Problem
Closing this JIRA as this appears to be working as intended. Please re-open if
we're missing some use case.
> JDBCConfigurationImpl.clone() butchers passwords
> ------------------------------------------------
>
> Key: OPENJPA-1534
> URL: https://issues.apache.org/jira/browse/OPENJPA-1534
> Project: OpenJPA
> Issue Type: Bug
> Components: jdbc
> Affects Versions: 2.0.0-beta
> Reporter: Laird Nelson
> Assignee: Rick Curtis
>
> 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.