Class BrokerLogConfigEntry


  • public class BrokerLogConfigEntry
    extends java.lang.Object
    This class is a data structure used to describe a log setting.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      java.lang.String code
      The code should be one of the BrokerLogConfig.LOG_OUTPUT_* or LOG_TOPIC_* values.
      boolean enabled
      Whether or not the log entry is enabled.
      java.lang.String value
      The value is any additional string parameter associated with a log topic or log output.
    • Constructor Summary

      Constructors 
      Constructor Description
      BrokerLogConfigEntry()
      Create an empty entry
      BrokerLogConfigEntry​(java.lang.String new_code, boolean new_enabled, java.lang.String new_value)
      Create an entry with values set.
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • code

        public java.lang.String code
        The code should be one of the BrokerLogConfig.LOG_OUTPUT_* or LOG_TOPIC_* values.
      • enabled

        public boolean enabled
        Whether or not the log entry is enabled.
      • value

        public java.lang.String value
        The value is any additional string parameter associated with a log topic or log output. Currently, this is only used by the LOG_OUTPUT_SYSLOG to store the syslog facility.
    • Constructor Detail

      • BrokerLogConfigEntry

        public BrokerLogConfigEntry()
        Create an empty entry
      • BrokerLogConfigEntry

        public BrokerLogConfigEntry​(java.lang.String new_code,
                                    boolean new_enabled,
                                    java.lang.String new_value)
        Create an entry with values set.