001/**
002 * Copyright 2005-2015 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 */
016package edu.sampleu.demo;
017
018import edu.sampleu.travel.bo.TravelAccount;
019import org.kuali.rice.core.api.search.SearchOperator;
020import org.kuali.rice.krad.service.KRADServiceLocatorWeb;
021
022import java.util.ArrayList;
023import java.util.HashMap;
024import java.util.List;
025import java.util.Map;
026
027/**
028 * @author Kuali Rice Team (rice.collab@kuali.org)
029 */
030public class TestAttributeQueryServiceImpl {
031
032    /**
033     * Retrieves travel accounts by travel account number
034     *
035     * @param number - account number
036     * @return List of TravelAccounts
037     */
038    public List<TravelAccount> retrieveTravelAccountsByNumber(String number) {
039        List<TravelAccount> matchingAccounts = new ArrayList<TravelAccount>();
040
041        Map<String, String> lookupCriteria = new HashMap<String, String>();
042        lookupCriteria.put("number", number + SearchOperator.LIKE_MANY.op());
043
044        matchingAccounts = (List<TravelAccount>) KRADServiceLocatorWeb.getLookupService().findCollectionBySearch(
045                TravelAccount.class, lookupCriteria);
046
047        return matchingAccounts;
048    }
049}