*/
private void startPluginDeployer() throws RuntimeException {
log.info("Starting the agent/server plugin deployer...");
try {
PluginDeploymentScannerMBean deployer = getPluginDeploymentScanner();
deployer.startDeployment();
} catch (Exception e) {
error += (error.isEmpty() ? "" : ", ") + "plugin deployer";
throw new RuntimeException("Cannot start the agent/server plugin deployer!", e);
}
}