public void removeMonitoredServer(int serverID) throws BAMException {
BAMConfigurationDSClient client = null;
try {
client = BAMUtil.getBAMConfigurationDSClient();
try {
client.removeServer(serverID);
} catch (Exception e) {
log.error("Can not delete monitored server entry from DB", e);
}
} finally {