Interface TraceabilityReporter


public interface TraceabilityReporter
Interface for reporting placeholder resolution events for traceability.
Since:
4.0
  • Method Summary

    Modifier and Type
    Method
    Description
    A reporter that does nothing.
    void
    onResolution(String expression, Object resolution, List<Object> contextStack)
    Called when a placeholder expression is resolved.
  • Method Details

    • noop

      static TraceabilityReporter noop()
      A reporter that does nothing.
      Returns:
      a no-op reporter.
    • onResolution

      void onResolution(String expression, Object resolution, List<Object> contextStack)
      Called when a placeholder expression is resolved.
      Parameters:
      expression - the SpEL expression that was resolved.
      resolution - the result of the resolution.
      contextStack - the current context stack (nesting context).