Package org.apache.kafka.clients.admin
Class ConfigEntry.ConfigSynonym
- java.lang.Object
-
- org.apache.kafka.clients.admin.ConfigEntry.ConfigSynonym
-
- Enclosing class:
- ConfigEntry
public static class ConfigEntry.ConfigSynonym extends Object
Class representing a configuration synonym of aConfigEntry
.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
int
hashCode()
String
name()
Returns the name of this configuration.ConfigEntry.ConfigSource
source()
Returns the source of this configuration.String
toString()
String
value()
Returns the value of this configuration, which may be null if the configuration is sensitive.
-
-
-
Method Detail
-
name
public String name()
Returns the name of this configuration.
-
value
public String value()
Returns the value of this configuration, which may be null if the configuration is sensitive.
-
source
public ConfigEntry.ConfigSource source()
Returns the source of this configuration.
-
-