001 package railo.runtime.debug; 002 003 public class ActiveQuery { 004 005 public final String sql; 006 public final long startTime; 007 008 public ActiveQuery(String sql, long startTime) { 009 this.sql=sql; 010 this.startTime=startTime; 011 } 012 }