Coverage Report - org.kuali.rice.kim.impl.group.GroupAttributeBo
 
Classes in this File Line Coverage Branch Coverage Complexity
GroupAttributeBo
86%
13/15
50%
2/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.group
 17  
 
 18  
 import javax.persistence.Column
 19  
 import javax.persistence.Entity
 20  
 import javax.persistence.Table
 21  
 import org.kuali.rice.kim.api.common.attribute.KimAttributeData
 22  
 import org.kuali.rice.kim.api.common.attribute.KimAttributeDataContract
 23  
 import org.kuali.rice.kim.impl.common.attribute.KimAttributeBo
 24  
 import org.kuali.rice.kim.impl.common.attribute.KimAttributeDataBo
 25  
 
 26  
 @Entity
 27  
 @Table(name="KRIM_GRP_ATTR_DATA_T")
 28  
 public class GroupAttributeBo extends KimAttributeDataBo implements KimAttributeDataContract {
 29  
    @Column(name="GRP_ID")
 30  
    String assignedToId
 31  
 
 32  
     /**
 33  
      * Converts a mutable bo to its immutable counterpart
 34  
      * @param bo the mutable business object
 35  
      * @return the immutable object
 36  
      */
 37  
     static KimAttributeData to(GroupAttributeBo bo) {
 38  1
         if (bo == null) {
 39  0
             return null
 40  
         }
 41  
 
 42  1
         return KimAttributeData.Builder.create(bo).build();
 43  
     }
 44  
 
 45  
     /**
 46  
      * Converts a immutable object to its mutable counterpart
 47  
      * @param im immutable object
 48  
      * @return the mutable bo
 49  
      */
 50  
     static GroupAttributeBo from(KimAttributeData im) {
 51  1
         if (im == null) {
 52  0
             return null
 53  
         }
 54  
 
 55  1
         GroupAttributeBo bo = new GroupAttributeBo()
 56  1
         bo.id = im.id
 57  1
         bo.assignedToId = im.assignedToId
 58  1
         bo.kimAttribute = KimAttributeBo.from(im.kimAttribute)
 59  1
         bo.kimAttributeId = im.kimAttribute?.id
 60  1
         bo.attributeValue = bo.attributeValue
 61  1
         bo.kimTypeId = im.kimTypeId
 62  1
         bo.versionNumber = im.versionNumber
 63  1
                 bo.objectId = im.objectId;
 64  
 
 65  1
         return bo
 66  
     }
 67  
 }