Coverage Report - org.kuali.rice.location.framework.county.CountyEbo
 
Classes in this File Line Coverage Branch Coverage Complexity
CountyEbo
0%
0/13
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.location.framework.county
 17  
 
 18  
 import org.kuali.rice.krad.bo.ExternalizableBusinessObject
 19  
 import org.kuali.rice.core.api.mo.common.active.MutableInactivatable
 20  
 import org.kuali.rice.location.api.county.County
 21  
 import org.kuali.rice.location.api.county.CountyContract
 22  
 import org.kuali.rice.location.framework.country.CountryEbo
 23  
 import org.kuali.rice.location.framework.state.StateEbo
 24  
 
 25  
 //@ToString
 26  
 class CountyEbo implements MutableInactivatable, CountyContract, ExternalizableBusinessObject {
 27  
     def String code
 28  
     def String countryCode
 29  
     def String stateCode
 30  
     def String name
 31  
     def boolean active
 32  
     def CountryEbo country;
 33  
     def StateEbo state;
 34  
     def Long versionNumber
 35  
 
 36  
     /**
 37  
      * Converts a mutable bo to its immutable counterpart
 38  
      * @param bo the mutable business object
 39  
      * @return the immutable object
 40  
      */
 41  
     static County to(CountyEbo bo) {
 42  0
         if (bo == null) {
 43  0
             return null
 44  
         }
 45  
 
 46  0
         return County.Builder.create(bo).build();
 47  
     }
 48  
 
 49  
     /**
 50  
      * Converts a immutable object to its mutable counterpart
 51  
      * @param im immutable object
 52  
      * @return the mutable bo
 53  
      */
 54  
     static CountyEbo from(County im) {
 55  0
         if (im == null) {
 56  0
             return null
 57  
         }
 58  
 
 59  0
         CountyEbo bo = new CountyEbo()
 60  0
         bo.code = im.code
 61  0
         bo.name = im.name
 62  0
         bo.countryCode = im.countryCode
 63  0
         bo.stateCode = im.stateCode
 64  0
         bo.active = im.active
 65  0
         bo.versionNumber = im.versionNumber
 66  
 
 67  0
         return bo
 68  
     }
 69  
 
 70  
     void refresh() { }
 71  
 }