001 /** 002 * Copyright 2005-2012 The Kuali Foundation 003 * 004 * Licensed under the Educational Community License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.opensource.org/licenses/ecl2.php 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013 * See the License for the specific language governing permissions and 014 * limitations under the License. 015 */ 016 package edu.sampleu.demo.kitchensink; 017 018 import edu.sampleu.travel.bo.TravelAccount; 019 import org.kuali.rice.core.api.search.SearchOperator; 020 import org.kuali.rice.krad.service.KRADServiceLocatorWeb; 021 022 import java.util.ArrayList; 023 import java.util.HashMap; 024 import java.util.List; 025 import java.util.Map; 026 027 /** 028 * @author Kuali Rice Team (rice.collab@kuali.org) 029 */ 030 public class TestSuggestServiceImpl { 031 032 public List<TravelAccount> retrieveTravelAccounts(String term) { 033 List<TravelAccount> matchingAccounts = new ArrayList<TravelAccount>(); 034 035 Map<String, String> lookupCriteria = new HashMap<String, String>(); 036 lookupCriteria.put("subAccountName", term + SearchOperator.LIKE_MANY.op()); 037 038 matchingAccounts = (List<TravelAccount>) KRADServiceLocatorWeb.getLookupService().findCollectionBySearch( 039 TravelAccount.class, lookupCriteria); 040 041 return matchingAccounts; 042 } 043 }