HornetQServerLogger.LOGGER.info("Found JMS connection factory: " + cf.getName());
jmsConnectionFactories.put(cf.getName(), cf);
}
else if (rec == JMSJournalStorageManagerImpl.DESTINATION_RECORD)
{
PersistedDestination destination = new PersistedDestination();
destination.decode(buffer);
destination.setId(id);
HornetQServerLogger.LOGGER.info("Found JMS destination: " + destination.getName());
jmsDestinations.put(new Pair<PersistedType, String>(destination.getType(), destination.getName()), destination);
}
else if (rec == JMSJournalStorageManagerImpl.JNDI_RECORD)
{
PersistedJNDI jndi = new PersistedJNDI();
jndi.decode(buffer);