loadPingTargets();
// load specified ping target if possible
if(!StringUtils.isEmpty(getPingTargetId())) {
try {
PingTargetManager pingTargetMgr = WebloggerFactory.getWeblogger().getPingTargetManager();
setPingTarget(pingTargetMgr.getPingTarget(getPingTargetId()));
} catch (WebloggerException ex) {
getLogger().error("Error looking up ping target - "+getPingTargetId(), ex);
}
}
}