mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
32 lines
533 B
Java
32 lines
533 B
Java
package io.ebeaninternal.server.profile;
|
|
|
|
class DQueryPlanMeta {
|
|
|
|
private final Class<?> type;
|
|
private final String label;
|
|
private final String sql;
|
|
|
|
DQueryPlanMeta(Class<?> type, String label, String sql) {
|
|
this.type = type;
|
|
this.label = label;
|
|
this.sql = sql;
|
|
}
|
|
|
|
public Class<?> getType() {
|
|
return type;
|
|
}
|
|
|
|
public String getLabel() {
|
|
return label;
|
|
}
|
|
|
|
public String getSql() {
|
|
return sql;
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return "type:" + type + " label:" + label;
|
|
}
|
|
}
|