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 java.lang.Object
Class representing a configuration synonym of aConfigEntry
.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object o)
int
hashCode()
java.lang.String
name()
Returns the name of this configuration.ConfigEntry.ConfigSource
source()
Returns the source of this configuration.java.lang.String
toString()
java.lang.String
value()
Returns the value of this configuration, which may be null if the configuration is sensitive.
-
-
-
Method Detail
-
name
public java.lang.String name()
Returns the name of this configuration.
-
value
public java.lang.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.
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-