in src/main/java/com/epam/eco/commons/kafka/config/AbstractConfigBuilder.java [55:62]
public final T propertyIfAbsent(String key, Object value) {
Validate.notBlank(key, "Config key is blank");
if (value != null && properties.get(key) == null) {
properties.put(key, value);
}
return (T)this;
}