Interface ITraceDao

All Known Implementing Classes:
NullTraceDao

public interface ITraceDao
Dao interface for the trace engine.
Since:
9.2
Author:
A.Pragt
  • Method Details

    • insert

      void insert(String appId, String type, Date date, Map<String,IValue> properties)
      Inserts a new trace entry
      Parameters:
      appId - the application id
      type - The type of the trace, not null.
      date - The insertion date, not null.
      properties - The map of properties (key: String, value: IValue), not null.
    • find

      ITraceEntry[] find(TraceSearchCriteria criteria)
      Finds traces matching the criteria.
      Parameters:
      criteria - The search criteria, not null.
      Returns:
      The found traces.