if (log.isDebugEnabled()) log.debug("Ping processing is suspended. No auto pings will be queued.");
return;
}
// TODO: new manager method for addQueueEntries(list)?
PingQueueManager pingQueueMgr = RollerFactory.getRoller().getPingQueueManager();
List applicableAutopings = getApplicableAutoPings(changedWeblogEntry);
for (Iterator i = applicableAutopings.iterator(); i.hasNext(); ) {
AutoPingData autoPing = (AutoPingData) i.next();
pingQueueMgr.addQueueEntry(autoPing);
}
}