use of org.akhq.configs.AbstractProperties in project akhq by tchiotludo.
the class KafkaModule method getDefaultsProperties.
private Properties getDefaultsProperties(List<? extends AbstractProperties> current, String type) {
Properties properties = new Properties();
current.stream().filter(r -> r.getName().equals(type)).forEach(r -> r.getProperties().forEach(properties::put));
return properties;
}
Aggregations