That means it's a partial fix right? If the superclass happens to host a @Field property we could have it work.

class Base {
  @Field public String name;
}

@Indexed
class Detail extends Base {
  @Field public String detail;
}

fullTextSession.getSearchFactory().buildQueryBuilder().forEntity(Base.class).get();

If as I proposed, we look for a subclass of Base that is indexed, in this case Detail, we have the best of both worlds/.

This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira