Package org.cipres.treebase.service

Examples of org.cipres.treebase.service.AbstractService.resurrectAll()


        LOGGER.debug("Removing result "+refineCandidate.getId());
        sr.getResults().remove(refineCandidate);
      }
      sr.announceSize(LOGGER);
      AbstractService service = getSearchService().getAppropriateService(sr);
      service.resurrectAll(sr.getResults());
      saveSearchResults(request, sr);
    }
    if ( sr.size() == 0 ) {
      return onSubmitDiscardResults(request,response,command,errors);
    }
View Full Code Here


   
    if (sr == null) {
      sr = initialSearchResults();
    } else if (sr.hasResultsList()) {
      AbstractService service = getSearchService().getAppropriateService(sr);
      service.resurrectAll(sr.getResults());
    }

    return sr;
  }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.