package org.glassfish.api.jdbc;

/**
  * Listener for tracing SQL operations
  */
public interface SQLTraceListener {

    /**
     * Notifies the listeners with SQL trace information.
     * @param record SQLTraceRecord that has information related
     * to the SQL operation
     */
    void sqlTrace(SQLTraceRecord record);
}