Class BrokerLogConfigEntry

java.lang.Object
COM.activesw.api.client.BrokerLogConfigEntry

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

    • code

      public 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 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 Details

    • BrokerLogConfigEntry

      public BrokerLogConfigEntry()
      Create an empty entry
    • BrokerLogConfigEntry

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