Skip to content
Snippets Groups Projects
Commit 196b4a68 authored by buczekp's avatar buczekp
Browse files

[SE-277] refactored common datastore code to reuse it in plasmids instance

SVN: 17079
parent 52158288
No related branches found
No related tags found
No related merge requests found
...@@ -64,8 +64,7 @@ public class FileTypeExtractor implements IFileFormatTypeExtractor ...@@ -64,8 +64,7 @@ public class FileTypeExtractor implements IFileFormatTypeExtractor
public FileTypeExtractor(final Properties properties) public FileTypeExtractor(final Properties properties)
{ {
String typesMapping = PropertyUtils.getProperty(properties, FILE_TYPES_NAME); this.fileTypeMapping = createTypeByFileExtensionMap(properties, FILE_TYPES_NAME);
this.fileTypeMapping = createFileTypeMap(typesMapping);
this.defaultType = this.defaultType =
normalizeExtension(PropertyUtils.getProperty(properties, DEFAULT_TYPE_PROPERTY_KEY, normalizeExtension(PropertyUtils.getProperty(properties, DEFAULT_TYPE_PROPERTY_KEY,
DEFAULT_FILE_FORMAT_TYPE)); DEFAULT_FILE_FORMAT_TYPE));
...@@ -74,9 +73,11 @@ public class FileTypeExtractor implements IFileFormatTypeExtractor ...@@ -74,9 +73,11 @@ public class FileTypeExtractor implements IFileFormatTypeExtractor
DIRECTORY_TYPE_PROPERTY_KEY, DIRECTORY_FILE_FORMAT_TYPE)); DIRECTORY_TYPE_PROPERTY_KEY, DIRECTORY_FILE_FORMAT_TYPE));
} }
private static Map<String, String> createFileTypeMap(String typesMapping) public static Map<String, String> createTypeByFileExtensionMap(Properties properties,
String itemsListPropertyName)
{ {
Map<String, String> result = new HashMap<String, String>(); final String typesMapping = PropertyUtils.getProperty(properties, itemsListPropertyName);
final Map<String, String> result = new HashMap<String, String>();
if (StringUtils.isBlank(typesMapping)) if (StringUtils.isBlank(typesMapping))
{ {
return result; return result;
...@@ -95,7 +96,7 @@ public class FileTypeExtractor implements IFileFormatTypeExtractor ...@@ -95,7 +96,7 @@ public class FileTypeExtractor implements IFileFormatTypeExtractor
.fromTemplate( .fromTemplate(
"Wrong value of property '%s = %s'. The item '%s' has incorrect format.\n" "Wrong value of property '%s = %s'. The item '%s' has incorrect format.\n"
+ "The value should be a comma separated list of mappings from type to extensions, e.g:\n" + "The value should be a comma separated list of mappings from type to extensions, e.g:\n"
+ "file-type1: file-extension1 file-extension2, file-type2: file-extension3", + "type1: file-extension1 file-extension2, type2: file-extension3",
FILE_TYPES_NAME, typesMapping, mapping); FILE_TYPES_NAME, typesMapping, mapping);
} }
......
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