Coverage Report - org.kuali.rice.kim.bo.entity.impl.KimEntityDataBase
 
Classes in this File Line Coverage Branch Coverage Complexity
KimEntityDataBase
0%
0/7
0%
0/8
7
 
 1  
 /*
 2  
  * Copyright 2007-2008 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.rice.kim.bo.entity.impl;
 17  
 
 18  
 import java.util.List;
 19  
 
 20  
 import javax.persistence.MappedSuperclass;
 21  
 
 22  
 import org.kuali.rice.kns.bo.DefaultableInactivateable;
 23  
 import org.kuali.rice.kns.bo.PersistableBusinessObjectBase;
 24  
 
 25  
 /**
 26  
  * This is a description of what this class does - jonathan don't forget to fill this in. 
 27  
  * 
 28  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 29  
  *
 30  
  */
 31  
 @MappedSuperclass
 32  0
 public abstract class KimEntityDataBase extends PersistableBusinessObjectBase {
 33  
 
 34  
 
 35  
         protected DefaultableInactivateable getDefaultItem( List<? extends DefaultableInactivateable> list ) {
 36  
                 // find the default entry
 37  0
                 for ( DefaultableInactivateable item : list ) {
 38  0
                         if ( item.isDefault() && item.isActive() ) {
 39  0
                                 return item;
 40  
                         }
 41  
                 }
 42  
                 // if no default, return the first
 43  0
                 if ( list.size() > 0 ) {
 44  0
                         return list.get( 0 );
 45  
                 }
 46  
                 // if neither, return null
 47  0
                 return null;                
 48  
         }
 49  
         
 50  
 }