JBoss42ActivationBridge: ActivationConfigPropertyMetaData are being created with
incorrectly set values
-------------------------------------------------------------------------------------------------------
Key: JBESB-2486
URL:
https://jira.jboss.org/jira/browse/JBESB-2486
Project: JBoss ESB
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: Rosetta
Reporter: Daniel Bevenius
Fix For: 4.6
The activate() methods contains the following lines of code:
for (String key : activationProperties.keySet())
{
String value = activationProperties.get(key);
ActivationConfigPropertyMetaData propMetaData = new
ActivationConfigPropertyMetaData();
propMetaData.setName(key);
propMetaData.setValue(key);
metaData.add(propMetaData);
//metaData.add(new ActivationConfigPropertyMetaData(key, value));
}
Value is being used and instead the value is set to the value of the key.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira