*/
private void reconfigure(String name)
throws ServiceException, ConfigurationException
{
Validate.notEmpty( name, "name" );
ServiceComponent serviceComponent = this.getServiceComponentEx(name);
// reconfigure the component
try
{
serviceComponent.reconfigure();
}
catch(ConfigurationException e)
{
String msg = "Reconfiguring failed : " + serviceComponent.getShorthand();
this.getLogger().error(msg,e);
throw new ConfigurationException(msg,e);
}
catch(Throwable t)
{
String msg = "Reconfiguring failed : " + serviceComponent.getShorthand();
this.getLogger().error(msg,t);
throw new ConfigurationException(msg,t);
}
}