Coverage Report - org.kuali.rice.kim.impl.type.KimTypeAttributeBo
 
Classes in this File Line Coverage Branch Coverage Complexity
KimTypeAttributeBo
0%
0/16
0%
0/4
0
 
 1  
 /**
 2  
  * Copyright 2005-2011 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.impl.type
 17  
 
 18  
 import org.kuali.rice.kim.api.type.KimTypeAttribute
 19  
 import org.kuali.rice.kim.api.type.KimTypeAttributeContract
 20  
 import org.kuali.rice.kim.impl.common.attribute.KimAttributeBo
 21  
 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase
 22  
 
 23  
 class KimTypeAttributeBo extends PersistableBusinessObjectBase implements KimTypeAttributeContract {
 24  
     String id
 25  
     String sortCode
 26  
     String kimAttributeId
 27  
     KimAttributeBo kimAttribute
 28  
     String kimTypeId
 29  
     boolean active
 30  
 
 31  
     /**
 32  
      * Converts a mutable bo to its immutable counterpart
 33  
      * @param bo the mutable business object
 34  
      * @return the immutable object
 35  
      */
 36  
     static KimTypeAttribute to(KimTypeAttributeBo bo) {
 37  0
         if (bo == null) {
 38  0
             return null
 39  
         }
 40  
 
 41  0
         return KimTypeAttribute.Builder.create(bo).build();
 42  
     }
 43  
 
 44  
     /**
 45  
      * Converts a immutable object to its mutable counterpart
 46  
      * @param im immutable object
 47  
      * @return the mutable bo
 48  
      */
 49  
     static KimTypeAttributeBo from(KimTypeAttribute im) {
 50  0
         if (im == null) {
 51  0
             return null
 52  
         }
 53  
 
 54  0
         KimTypeAttributeBo bo = new KimTypeAttributeBo()
 55  0
         bo.id = im.id
 56  0
         bo.sortCode = im.sortCode
 57  0
         bo.kimAttributeId = im.kimAttribute.id
 58  0
         bo.kimAttribute = KimAttributeBo.from(im.kimAttribute)
 59  0
         bo.kimTypeId = im.kimTypeId
 60  0
         bo.active = im.active
 61  0
         bo.versionNumber = im.versionNumber
 62  0
         bo.objectId = im.objectId
 63  
 
 64  0
         return bo
 65  
     }
 66  
 
 67  
     KimAttributeBo getKimAttribute() {
 68  0
         return kimAttribute;
 69  
     }
 70  
 }