return null;
}
}
protected LbConfig getLbConfig(String configName) throws MBeanException {
LbConfigs lbConfigs = getLbConfigs();
if (lbConfigs == null ) {
_logger.log(Level.FINE,_sMgr.getString(
"http_lb_admin.NoLbConfigs"));
String msg = _strMgr.getString("NoLbConfigsElement");
throw new MBeanException ( new ConfigException(msg));
}
LbConfig lbConfig = lbConfigs.getLbConfigByName(configName);
if (lbConfig == null ) {
_logger.log(Level.FINE,_sMgr.getString(
"http_lb_admin.NoLbConfigs"));
String msg = _strMgr.getString("InvalidLbConfigName", configName);
throw new MBeanException (new ConfigException(msg));