Coverage Report - org.kuali.rice.kns.service.impl.CountyServiceImpl
 
Classes in this File Line Coverage Branch Coverage Complexity
CountyServiceImpl
0%
0/25
0%
0/14
2.5
 
 1  
 /*
 2  
  * Copyright 2008 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.kns.service.impl;
 17  
 
 18  
 import java.util.HashMap;
 19  
 import java.util.Map;
 20  
 
 21  
 import org.apache.commons.lang.StringUtils;
 22  
 import org.apache.log4j.Logger;
 23  
 import org.kuali.rice.kns.bo.County;
 24  
 import org.kuali.rice.kns.service.CountryService;
 25  
 import org.kuali.rice.kns.service.CountyService;
 26  
 import org.kuali.rice.kns.service.KualiModuleService;
 27  
 import org.kuali.rice.kns.util.KNSPropertyConstants;
 28  
 
 29  
 /**
 30  
  * This class...
 31  
  */
 32  0
 public class CountyServiceImpl implements CountyService {
 33  0
     private static Logger LOG = Logger.getLogger(CountyServiceImpl.class);
 34  
 
 35  
     private CountryService countryService;
 36  
     private KualiModuleService kualiModuleService;
 37  
 
 38  
     /**
 39  
      * @see org.kuali.kfs.sys.service.CountyService#getByPrimaryId(java.lang.String, java.lang.String)
 40  
      */
 41  
     public County getByPrimaryId(String postalStateCode, String countyCode) {
 42  0
         String postalCountryCode = countryService.getDefaultCountry().getPostalCountryCode();
 43  
 
 44  0
         return this.getByPrimaryId(postalCountryCode, postalStateCode, countyCode);
 45  
     }
 46  
 
 47  
     /**
 48  
      * @see org.kuali.kfs.sys.service.CountyService#getByPrimaryId(java.lang.String, java.lang.String, java.lang.String)
 49  
      */
 50  
     public County getByPrimaryId(String postalCountryCode, String postalStateCode, String countyCode) {
 51  0
         if (StringUtils.isBlank(postalCountryCode) || StringUtils.isBlank(postalStateCode) || StringUtils.isBlank(countyCode)) {
 52  0
             LOG.info("PostalCountryCode, postalStateCode and countycode can be empty String.");
 53  0
             return null;
 54  
         }
 55  
 
 56  0
         Map<String, Object> countyMap = new HashMap<String, Object>();
 57  0
         countyMap.put(KNSPropertyConstants.POSTAL_COUNTRY_CODE, postalCountryCode);
 58  0
         countyMap.put(KNSPropertyConstants.STATE_CODE, postalStateCode);
 59  0
         countyMap.put(KNSPropertyConstants.COUNTY_CODE, countyCode);
 60  
 
 61  0
         return kualiModuleService.getResponsibleModuleService(County.class).getExternalizableBusinessObject(County.class, countyMap);
 62  
     }
 63  
 
 64  
     public County getByPrimaryIdIfNecessary(String postalStateCode, String countyCode, County existingCounty) {
 65  0
         String postalCountryCode = countryService.getDefaultCountry().getPostalCountryCode();
 66  
 
 67  0
         return this.getByPrimaryIdIfNecessary(postalCountryCode, postalStateCode, countyCode, existingCounty);
 68  
     }
 69  
 
 70  
     public County getByPrimaryIdIfNecessary(String postalCountryCode, String postalStateCode, String countyCode, County existingCounty) {
 71  0
         if (existingCounty != null) {
 72  0
             String existingCountryCode = existingCounty.getPostalCountryCode();
 73  0
             String existingStateCode = existingCounty.getStateCode();
 74  0
             String existingCountyCode = existingCounty.getCountyCode();
 75  
 
 76  0
             if (StringUtils.equals(postalCountryCode, existingCountryCode) && StringUtils.equals(postalStateCode, existingStateCode) && StringUtils.equals(countyCode, existingCountyCode)) {
 77  0
                 return existingCounty;
 78  
             }
 79  
         }
 80  
 
 81  0
         return this.getByPrimaryId(postalCountryCode, postalStateCode, countyCode);
 82  
     }
 83  
 
 84  
     /**
 85  
      * Sets the kualiModuleService attribute value.
 86  
      * 
 87  
      * @param kualiModuleService The kualiModuleService to set.
 88  
      */
 89  
     public void setKualiModuleService(KualiModuleService kualiModuleService) {
 90  0
         this.kualiModuleService = kualiModuleService;
 91  0
     }
 92  
 
 93  
     /**
 94  
      * Sets the countryService attribute value.
 95  
      * 
 96  
      * @param countryService The countryService to set.
 97  
      */
 98  
     public void setCountryService(CountryService countryService) {
 99  0
         this.countryService = countryService;
 100  0
     }
 101  
 }