001 /**
002 * Copyright 2005-2013 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 org.kuali.rice.kim.inquiry;
017
018 import java.util.Map;
019
020 import org.kuali.rice.kim.api.identity.PersonService;
021 import org.kuali.rice.kim.api.services.KimApiServiceLocator;
022 import org.kuali.rice.kns.inquiry.KualiInquirableImpl;
023 import org.kuali.rice.krad.bo.BusinessObject;
024
025 /**
026 * This is a description of what this class does - kellerj don't forget to fill this in.
027 *
028 * @author Kuali Rice Team (rice.collab@kuali.org)
029 *
030 */
031 public class PersonInquirableImpl extends KualiInquirableImpl {
032
033 PersonService personService;
034
035 /**
036 * This overridden method ...
037 *
038 * @see org.kuali.rice.krad.inquiry.KualiInquirableImpl#getBusinessObject(java.util.Map)
039 */
040 @SuppressWarnings("unchecked")
041 @Override
042 public BusinessObject getBusinessObject(Map fieldValues) {
043 return getPersonService().getPerson( fieldValues.get( "principalId" ).toString() );
044 }
045
046 public PersonService getPersonService() {
047 if ( personService == null ) {
048 personService = KimApiServiceLocator.getPersonService();
049 }
050 return personService;
051 }
052 }