#1297 - ENH: Add DtoQuery ... such that we can map native SQL queries automatically into "DTO beans"

This commit is contained in:
Rob Bygrave
2018-03-02 23:32:01 +13:00
parent 5801f7620d
commit aad5b33db2
47 changed files with 2293 additions and 273 deletions
@@ -0,0 +1,31 @@
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;
}
}