Package org.apache.kafka.common.config
Class ConfigTransformerResult
- java.lang.Object
-
- org.apache.kafka.common.config.ConfigTransformerResult
-
public class ConfigTransformerResult extends Object
The result of a transformation fromConfigTransformer
.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,String>
data()
Returns the transformed data, with variables replaced with corresponding values from the ConfigProvider instances if found.Map<String,Long>
ttls()
Returns the TTL values (in milliseconds) returned from the ConfigProvider instances for a given set of paths.
-
-
-
Method Detail
-
data
public Map<String,String> data()
Returns the transformed data, with variables replaced with corresponding values from the ConfigProvider instances if found.Modifying the transformed data that is returned does not affect the
ConfigProvider
nor the original data that was used as the source of the transformation.- Returns:
- data a Map of key-value pairs
-
-