mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

boli
08.38.2007 04dfafe19f0d3687d0f0b3e51d2d5bf3d19b58bf
opends/src/server/org/opends/server/loggers/debug/DebugLogRecord.java
@@ -34,6 +34,7 @@
import org.opends.server.types.DebugLogCategory;
import java.util.Date;
import java.util.Map;
/**
 * A DebugLogRecord is reponsible for passing tracing log messages from the
@@ -69,6 +70,11 @@
  private long threadID;
  /**
   * Detailed debug properties for thread that issued logging call.
   */
  private Map<String, String> threadProperties;
  /**
   * Event time in milliseconds since 1970.
   */
  private Date timestamp;
@@ -387,4 +393,24 @@
  public void setSequenceNumber(long seq) {
    sequenceNumber = seq;
  }
  /**
   * Set the thread properties.
   *
   * @param threadProperties the thread properties map to set.
   */
  public void setThreadProperties(Map<String, String> threadProperties)
  {
    this.threadProperties = threadProperties;
  }
  /**
   * Retrives the thread properties.
   *
   * @return the thread properties.
   */
  public Map<String, String> getThreadProperties()
  {
    return threadProperties;
  }
}