Package com.esri.gpt.catalog.search

Examples of com.esri.gpt.catalog.search.SearchCriteria.toDom()


  //  throw new SearchException("catalog.search.error.maxSavedSearchesReached");
  //}
  if (LOG.isLoggable(Level.FINE)) {
    LOG.log(Level.FINE, "Search Criteria Object being saved = \n{0}", criteria.toString());
  }
  criteria = new SearchCriteria(criteria.toDom());
  criteria.getSearchFilterPageCursor().setCurrentPage(1);
  SavedSearchCriteria savedSearchCriteria =
    new SavedSearchCriteria(this.getSearchCriteria().getSavedSearchName(),
        criteria, this.extractRequestContext().getUser());
View Full Code Here


  .getSearchSaveRepository();
  SearchCriteria criteria =
    saveRepository.getSearchCriteria(id,
        this.extractRequestContext().getUser());
 
  this.getSearchCriteria().loadSearchCriteria(criteria.toDom());
  if(LOG.isLoggable(Level.FINE)) {
    LOG.log(Level.FINE, "Loaded Criteria Object = \n{0}", criteria.toString());
  }
}
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.