I want to stay as close as possible to the current query API
So just override
@Override
public Query setResultTransformer(ResultTransformer transformer) {
this.resultTransformer = transformer;
return this;
}
in FullTextQueryImpl from the Query API and use the resultTransformer
John Griffin wrote:
For the ResultTransformer, do you just want the user to pass a class as
the sole argument to indicate what they want as a result?
Ex. setResultTransformer(Class clazz) where clazz is Map.class or
Object.class
This was what I wanted in the beginning when I updated the
re