use of com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper in project streamline by hortonworks.
the class ConfigFileWriter method writeConfigToPropertiesTypeFile.
private void writeConfigToPropertiesTypeFile(Map<String, String> configuration, File destPath) throws IOException {
ObjectMapper objectMapper = new JavaPropsMapper();
objectMapper.writeValue(destPath, configuration);
}
Aggregations