Ejemplo n.º 1
0
 public SolrCallable(
     SearchTermAndList stal1,
     SearchTermAndList stal2,
     long term1count,
     long term2count,
     SolrServer server,
     boolean useAlias,
     HashMap<String, String> filterGrayList,
     HashMap<String, String> keepGrayList,
     long totalDocCount) {
   this.term1 = stal1.getTerm();
   this.term2 = stal2.getTerm();
   this.term1count = term1count;
   this.term2count = term2count;
   this.server = server;
   this.term1Array = stal1.asListArray();
   this.term2Array = stal2.asListArray();
   this.useAlias = useAlias;
   this.filterGrayList = filterGrayList;
   this.keepGrayList = keepGrayList;
   this.totalDocCount = totalDocCount;
 }