ProfileExporter exporter = findExporter(exporterKey);
return exporter.getMimeType();
}
public void export(String profileKey, String exporterKey, Writer writer) {
ProfileExporter exporter = findExporter(exporterKey);
QualityProfileDto profile = loader.getByKey(profileKey);
if (profile == null) {
throw new NotFoundException("Unknown Quality profile: " + profileKey);
}
exporter.exportProfile(wrap(profile), writer);
}