*/
public boolean isMatchingConnectionFactory(ConnectionFactory cf,
JMSURLHelper originalJMSURL,
HashMap cfProps)
{
JMSURLHelper jmsurl = (JMSURLHelper)cfProps.get(JMSConstants.JMS_URL);
// just check the connection factory jndi name
String cfJndiName = jmsurl.getPropertyValue(_CONNECTION_FACTORY_JNDI_NAME);
String originalCfJndiName = originalJMSURL.getPropertyValue(_CONNECTION_FACTORY_JNDI_NAME);
if (cfJndiName.equalsIgnoreCase(originalCfJndiName))
return true;