001 /**
002 * Copyright 2004-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 org.kuali.hr.time.person.dao;
017
018 import java.util.LinkedList;
019 import java.util.List;
020
021 import org.apache.log4j.Logger;
022 import org.kuali.hr.time.person.TKPerson;
023 import org.kuali.rice.core.framework.persistence.ojb.dao.PlatformAwareDaoBaseOjb;
024 import org.kuali.rice.kim.api.identity.Person;
025 import org.kuali.rice.kim.api.services.KimApiServiceLocator;
026
027 public class PersonDaoSpringOjbImpl extends PlatformAwareDaoBaseOjb implements PersonDao {
028
029 private static final Logger LOG = Logger.getLogger(PersonDaoSpringOjbImpl.class);
030
031 public List<TKPerson> getPersonCollection(List<String> principalIds) {
032
033 List<TKPerson> persons = new LinkedList<TKPerson>();
034
035 for (String principalId : principalIds) {
036 Person p = KimApiServiceLocator.getPersonService().getPerson(principalId);
037 if (p != null) {
038 TKPerson person = new TKPerson();
039 person.setPrincipalId(p.getPrincipalId());
040 person.setFirstName(p.getFirstName());
041 person.setLastName(p.getLastName());
042 person.setPrincipalName(p.getName());
043 persons.add(person);
044 }
045 }
046 return persons;
047 }
048
049 }