/**
  * Stores the configuration object on the server. The server bean path is the one returned by
  * mo.getPath().
  *
  * @param mo the ManagementObject to read from the server
  */
 private void saveConfiguration(ConnectorManagementObject mo) throws AdminException {
   Log.debug("Saving configuration object " + mo.getPath());
   businessDelegate.setServerBean(mo.getPath(), mo.getObject());
   Log.info("Configuration saved.");
 }