log.info(" ------ DUMPING VIEWMANAGER -------- ");
ManagementView viewManager = ejtt.profileService.getManagementView();
for( String name : viewManager.getTemplateNames() ){
DeploymentTemplateInfo template = viewManager.getTemplate(name);
log.debug(" * Template: "+name+"; Desc: "+template.getDescription());
}
for( ComponentType type : viewManager.getComponentTypes() ){
log.info(" * Type: "+type.toString());
for( ManagedComponent component : viewManager.getComponentsForType(type) ){