View Javadoc
1   /**
2    * Copyright 2004-2014 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.kuali.kpme.pm.classification.flag.dao;
17  
18  import java.util.ArrayList;
19  import java.util.Collection;
20  import java.util.List;
21  
22  import org.apache.ojb.broker.query.Criteria;
23  import org.apache.ojb.broker.query.Query;
24  import org.apache.ojb.broker.query.QueryFactory;
25  import org.kuali.kpme.pm.classification.flag.ClassificationFlagBo;
26  import org.kuali.rice.core.framework.persistence.ojb.dao.PlatformAwareDaoBaseOjb;
27  
28  public class ClassificationFlagDaoObjImpl extends PlatformAwareDaoBaseOjb implements ClassificationFlagDao {
29  
30  	@Override
31  	public List<ClassificationFlagBo> getFlagListForClassification(String pmClassificationId) {
32  		List<ClassificationFlagBo> flagList = new ArrayList<ClassificationFlagBo>();
33  		Criteria crit = new Criteria();
34          crit.addEqualTo("pmPositionClassId", pmClassificationId);
35  
36          Query query = QueryFactory.newQuery(ClassificationFlagBo.class, crit);
37          Collection c = this.getPersistenceBrokerTemplate().getCollectionByQuery(query);
38  
39          if (c != null) {
40          	flagList.addAll(c);
41          }
42          return flagList;
43  	}
44  
45  }