LOGGER.log(Level.INFO, "Unable to load transport hander class. Error: " + e.getMessage(), e);
continue;
}
// try to load it to see if it is available
if (load(transportHandlerClass) != null) {
Handle handle = transportHandlerClass.getAnnotation(Handle.class);
if (handle != null) {
for (TransportType type : handle.value()) {
handlerClasses.put(type, transportHandlerClass);
}
}
}
}