Coverage Report - org.kuali.student.datadictionary.Rice2StudentAttributeDefinitionConverter
 
Classes in this File Line Coverage Branch Coverage Complexity
Rice2StudentAttributeDefinitionConverter
100%
23/23
100%
2/2
2
 
 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 org.kuali.rice.kns.datadictionary.AttributeDefinition;
 19  
 import org.kuali.student.datadictionary.dto.AttributeDefinitionInfo;
 20  
 import org.kuali.student.datadictionary.dto.ValidCharactersConstraintInfo;
 21  
 
 22  
 /**
 23  
  *
 24  
  * @author nwright
 25  
  */
 26  255
 public class Rice2StudentAttributeDefinitionConverter {
 27  
 
 28  1
     private static org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(Rice2StudentAttributeDefinitionConverter.class);
 29  
 
 30  
     public AttributeDefinitionInfo convert(AttributeDefinition rice) {
 31  255
         AttributeDefinitionInfo.Builder bldr = new AttributeDefinitionInfo.Builder();
 32  255
         bldr.setName (rice.getName());
 33  255
         bldr.setChildEntryName (rice.getChildEntryName());
 34  255
         bldr.setDataType (rice.getDataType());
 35  255
         bldr.setRequired (rice.isRequired());
 36  
 //        bldr.setMinOccurs (rice.getMustOccurConstraints().get(0).getMin());
 37  
 //        bldr.setMaxOccurs (rice.getMustOccurConstraints().get (0).getMax());
 38  255
         bldr.setMinLength (rice.getMinLength());
 39  255
         bldr.setMaxLength (rice.getMaxLength());
 40  255
         bldr.setForceUppercase (rice.getForceUppercase());
 41  255
         bldr.setShortLabel (rice.getShortLabel());
 42  255
         bldr.setSummary (rice.getSummary());
 43  255
         bldr.setLabel (rice.getLabel());
 44  255
         bldr.setDescription (rice.getDescription());
 45  255
         bldr.setExclusiveMin (rice.getExclusiveMin());
 46  255
         bldr.setInclusiveMax (rice.getInclusiveMax());
 47  255
         bldr.setDisplayLabelAttribute (rice.getDisplayLabelAttribute());
 48  255
         bldr.setUnique (rice.getUnique());
 49  255
         bldr.setCustomValidatorClass (rice.getCustomValidatorClass());
 50  255
         bldr.setFormatterClass (rice.getFormatterClass());
 51  255
         if (rice.getValidCharactersConstraint() != null) {
 52  155
             bldr.setValidCharactersConstraint (new Rice2StudentValidCharactersConstraintConverter ().convert(rice.getValidCharactersConstraint()));
 53  
         }
 54  255
         return bldr.build();
 55  
     }
 56  
 }