// OK this one is a bit tricky because an event has a start+end time ... I think both
// have to be inside the time range (fortunately because that's the easy case!)
// (Note time_start and time_end don't exist inside the document object)
StringBuffer sbDummy = new StringBuffer();
BoolQueryBuilder combo2 = QueryBuilders.boolQuery();
combo2.should(this.parseDateTerm(assoc.time, sQueryTerm, AssociationPojo.docQuery_time_start_, false));
sQueryTerm.append(") OR/CONTAINS (");
combo2.should(this.parseDateTerm(assoc.time, sQueryTerm, AssociationPojo.docQuery_time_end_, false));
// (complex bit, start must be < and end must be >)
BoolQueryBuilder combo3 = QueryBuilders.boolQuery();
AdvancedQueryPojo.QueryTermPojo.TimeTermPojo event1 = new AdvancedQueryPojo.QueryTermPojo.TimeTermPojo();