if (introspector != null && blueprintContainer != null) {
Set<String> componentIds = blueprintContainer.getComponentIds();
// TODO would be nice to query classes available or something...
String jaxbId = "jaxbDataFormat";
ClassLoaderProvider classLoaderProvider = null;
if (componentIds.contains(jaxbId)) {
Object instance = blueprintContainer.getComponentInstance(jaxbId);
if (instance != null) {
LOG.info("Found dynamic JAXB DataFormat: " + instance);
try {