#125 - ENH: Add support for query returning a List of single Attribute type

This commit is contained in:
Robin Bygrave
2016-08-04 16:41:50 +12:00
parent 9a5cb242ce
commit 1be30f1671
25 changed files with 716 additions and 218 deletions
@@ -400,6 +400,11 @@ class JunctionExpression<T> implements SpiJunction<T>, SpiExpression, Expression
return exprList.findMap(keyProperty, keyType);
}
@Override
public <A> List<A> findSingleAttributeList() {
return exprList.findSingleAttributeList();
}
@Override
public PagedList<T> findPagedList() {
return exprList.findPagedList();