Expected.java 933 B

123456789101112131415
  1. package com.provectus.kafka.ui.variables;
  2. public interface Expected {
  3. String BROKER_SOURCE_INFO_TOOLTIP =
  4. "DYNAMIC_TOPIC_CONFIG = dynamic topic config that is configured for a specific topic\n"
  5. + "DYNAMIC_BROKER_LOGGER_CONFIG = dynamic broker logger config that is configured for a specific broker\n"
  6. + "DYNAMIC_BROKER_CONFIG = dynamic broker config that is configured for a specific broker\n"
  7. + "DYNAMIC_DEFAULT_BROKER_CONFIG = dynamic broker config that is configured as default "
  8. + "for all brokers in the cluster\n"
  9. + "STATIC_BROKER_CONFIG = static broker config provided as broker properties at start up "
  10. + "(e.g. server.properties file)\n"
  11. + "DEFAULT_CONFIG = built-in default configuration for configs that have a default value\n"
  12. + "UNKNOWN = source unknown e.g. in the ConfigEntry used for alter requests where source is not set";
  13. }