Class LogTraceParams


  • public class LogTraceParams
    extends java.lang.Object
    A notification to log the trace of the server's execution. The amount and content of these notifications depends on the current trace configuration. If trace is 'off', the server should not send any logTrace notification. If trace is 'message', the server should not add the 'verbose' field.

    Since 3.16.0

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean equals​(java.lang.Object obj)  
      java.lang.String getMessage()
      The message to be logged.
      java.lang.String getVerbose()
      Additional information that can be computed if the trace configuration is set to TraceValue.Verbose
      int hashCode()  
      void setMessage​(java.lang.String message)
      The message to be logged.
      void setVerbose​(java.lang.String verbose)
      Additional information that can be computed if the trace configuration is set to TraceValue.Verbose
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • LogTraceParams

        public LogTraceParams()
      • LogTraceParams

        public LogTraceParams​(java.lang.String message)
      • LogTraceParams

        public LogTraceParams​(java.lang.String message,
                              java.lang.String verbose)
    • Method Detail

      • getMessage

        public java.lang.String getMessage()
        The message to be logged.
      • setMessage

        public void setMessage​(java.lang.String message)
        The message to be logged.
      • getVerbose

        public java.lang.String getVerbose()
        Additional information that can be computed if the trace configuration is set to TraceValue.Verbose
      • setVerbose

        public void setVerbose​(java.lang.String verbose)
        Additional information that can be computed if the trace configuration is set to TraceValue.Verbose
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object
      • equals

        public boolean equals​(java.lang.Object obj)
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object