Coverage Report - org.kuali.student.datadictionary.Rice2StudentDictionaryEntryConverter
 
Classes in this File Line Coverage Branch Coverage Complexity
Rice2StudentDictionaryEntryConverter
100%
15/15
75%
3/4
3
 
 1  
 /*
 2  
  * Copyright 2011 The Kuali Foundation
 3  
  *
 4  
  * Licensed under the Educational Community License, Version 1.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/ecl1.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.student.datadictionary;
 17  
 
 18  
 import java.util.ArrayList;
 19  
 import java.util.List;
 20  
 import org.kuali.rice.kns.datadictionary.AttributeDefinition;
 21  
 import org.kuali.rice.kns.datadictionary.DataObjectEntry;
 22  
 import org.kuali.student.datadictionary.dto.AttributeDefinitionInfo;
 23  
 import org.kuali.student.datadictionary.dto.DictionaryEntryInfo;
 24  
 
 25  
 /**
 26  
  *
 27  
  * @author nwright
 28  
  */
 29  35
 public class Rice2StudentDictionaryEntryConverter {
 30  
 
 31  1
     private static org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(Rice2StudentDictionaryEntryConverter.class);
 32  
 
 33  
     public DictionaryEntryInfo convert(DataObjectEntry rice) {
 34  35
         DictionaryEntryInfo.Builder bldr = new DictionaryEntryInfo.Builder();
 35  35
         bldr.setObjectClass(rice.getFullClassName());
 36  35
         bldr.setName(rice.getName());
 37  35
         bldr.setObjectLabel(rice.getObjectLabel());
 38  35
         bldr.setObjectDescription(rice.getObjectDescription());
 39  35
         bldr.setTitleAttribute(rice.getTitleAttribute());
 40  35
         bldr.setPrimaryKeys(rice.getPrimaryKeys());
 41  35
         if (rice.getAttributes() != null) {
 42  35
             List<AttributeDefinitionInfo> list = new ArrayList(rice.getAttributes().size());
 43  35
             for (AttributeDefinition ad : rice.getAttributes()) {
 44  255
                 list.add(new Rice2StudentAttributeDefinitionConverter ().convert(ad));
 45  
             }
 46  35
             bldr.setAttributes (list);
 47  
         }
 48  35
         return bldr.build();
 49  
     }
 50  
 }