try {
AdminModule.connect(factory.getHostname(), factory.getPort(), factory.getUsername(), factory.getPassword(), factory.getCnxTimer());
}catch (ConnectException e) {
throw new HermesException(e);
}catch (UnknownHostException e) {
throw new HermesException(e);
}catch (AdminException e) {
throw new HermesException(e);
}
connected = true;
}
}