* {@link Map} to {@link List} of {@link CProps} converter, to ease handling of these thingies.
*/
public static List<CProps> getConfigListFromMap(final Map<String, String> map) {
final List<CProps> result = Lists.newArrayListWithExpectedSize(map.size());
for (Map.Entry<String, String> entry : map.entrySet()) {
final CProps cprop = new CProps();
cprop.setKey(entry.getKey());
cprop.setValue(entry.getValue());
result.add(cprop);
}
return result;
}