logger.info("FedoraDigitalObjectManager(config)");
String username = config.getString(USERNAME);
String password = config.getString(PASSWORD);
String server = config.getString(SERVER);
this.managerUri = config.getString(MANAGERURI);
fedora = new FedoraConnector(username,password,server);
logger.info("created FEDORA client with: "+username + " at " + server);
} catch (NoSuchElementException e) {
logger.info("FedoraDigitalObjectManager(config) error. Path property with key " + USERNAME + " and " + PASSWORD + " and " + SERVER + " not found in config");
throw new IllegalArgumentException("Path property with key " + USERNAME + " and " + PASSWORD + " and " + SERVER + " not found in config");
} catch (FedoraConnectionException e) {