Coverage Report - org.kuali.rice.krad.keyvalues.ModuleValuesFinder
 
Classes in this File Line Coverage Branch Coverage Complexity
ModuleValuesFinder
0%
0/7
0%
0/2
1.5
 
 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.krad.keyvalues;
 17  
 
 18  
 import org.kuali.rice.core.api.util.ConcreteKeyValue;
 19  
 import org.kuali.rice.core.api.util.KeyValue;
 20  
 import org.kuali.rice.krad.service.KRADServiceLocatorWeb;
 21  
 import org.kuali.rice.krad.service.ModuleService;
 22  
 
 23  
 import java.util.ArrayList;
 24  
 import java.util.List;
 25  
 
 26  0
 public class ModuleValuesFinder extends KeyValuesBase {
 27  
 
 28  
     /*
 29  
      * @see org.kuali.keyvalues.KeyValuesFinder#getKeyValues()
 30  
      */
 31  
     @Override
 32  
         public List<KeyValue> getKeyValues() {
 33  0
             List<KeyValue> keyValues = new ArrayList<KeyValue>();
 34  0
         keyValues.add(new ConcreteKeyValue("", ""));
 35  
         //keyValues.add(getKeyValue(RiceConstants.CROSS_MODULE_CODE, RiceConstants.CROSS_MODULE_NAME));
 36  0
         for (ModuleService moduleService : KRADServiceLocatorWeb.getKualiModuleService().getInstalledModuleServices()) {
 37  0
             keyValues.add(getKeyValue(moduleService.getModuleConfiguration().getNamespaceCode(), 
 38  
                             KRADServiceLocatorWeb.getKualiModuleService().getNamespaceName(moduleService.getModuleConfiguration().getNamespaceCode())));
 39  
         }
 40  0
         return keyValues;
 41  
     }
 42  
     
 43  
     private KeyValue getKeyValue(String moduleCode, String moduleName) {
 44  0
         return new ConcreteKeyValue(moduleCode, moduleCode + " - " + moduleName);
 45  
     }
 46  
 }