Skip to content
Snippets Groups Projects
Commit 1ab0f3a2 authored by Piotr Gawron's avatar Piotr Gawron
Browse files

confiugration returns info about converter extension

parent f37ecd87
No related branches found
No related tags found
1 merge request!93Resolve "export should use API"
......@@ -91,12 +91,14 @@ public class ConfigurationRestImpl {
userService.getToken(token);
List<Map<String, Object>> result = new ArrayList<>();
List<Pair<String, Class<? extends AbstractImageGenerator>>> imageGenerators = new ImageGenerators().getAvailableImageGenerators();
ImageGenerators imageGenerators = new ImageGenerators();
List<Pair<String, Class<? extends AbstractImageGenerator>>> imageGeneratorList = imageGenerators.getAvailableImageGenerators();
for (Pair<String, Class<? extends AbstractImageGenerator>> element : imageGenerators) {
for (Pair<String, Class<? extends AbstractImageGenerator>> element : imageGeneratorList) {
Map<String, Object> row = new HashMap<>();
row.put("name", element.getLeft());
row.put("handler", element.getRight().getCanonicalName());
row.put("extension", imageGenerators.getExtension(element.getRight()));
result.add(row);
}
return result;
......@@ -114,6 +116,7 @@ public class ConfigurationRestImpl {
Map<String, Object> row = new HashMap<>();
row.put("name", converter.getCommonName());
row.put("handler", converter.getClass().getCanonicalName());
row.put("extension", converter.getFileExtension());
result.add(row);
}
return result;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment