return processor;
}
void loadCustomMappings() {
CustomMappingsLoader customMappingsLoader = new CustomMappingsLoader();
List<MappingFileData> xmlMappings = loadFromFiles(mappingFiles);
ArrayList<MappingFileData> allMappings = new ArrayList<MappingFileData>();
allMappings.addAll(xmlMappings);
allMappings.addAll(builderMappings);
LoadMappingsResult loadMappingsResult = customMappingsLoader.load(allMappings);
this.customMappings = loadMappingsResult.getCustomMappings();
this.globalConfiguration = loadMappingsResult.getGlobalConfiguration();
}