io.ebean.meta.MetaQueryMetric Maven / Gradle / Ivy
package io.ebean.meta;
/**
* Query execution metrics.
*/
public interface MetaQueryMetric extends MetaTimedMetric {
/**
* The type of entity or DTO bean.
*/
Class> getType();
/**
* The label for the query (can be null).
*/
String getLabel();
/**
* The actual SQL of the query.
*/
String getSql();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy