We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents dd9c262 + 38c1575 commit 937550dCopy full SHA for 937550d
1 file changed
src/main/java/io/aiven/commons/kafka/config/docs/ConfigDefBean.java
@@ -140,15 +140,12 @@ public List<T> dependents() {
140
}
141
142
/**
143
- * Gets the list of configuration options.
+ * Gets the list of configuration options. Filtered to remove any internal configuration
144
*
145
- * @return the list of configuration options.
+ * @return the list of configuration options that are not internal configuration options.
146
*/
147
public List<T> configKeys() {
148
- return configDef.configKeys().values().stream()
149
- .map(constructor)
150
- .sorted(Comparator.comparing(ConfigKeyBean::getName))
151
- .collect(Collectors.toList());
+ return generatedFilteredList(c -> !c.internalConfig);
152
153
154
0 commit comments