Clover Coverage Report - Implementation 2.0.0-SNAPSHOT
Coverage timestamp: Wed Dec 31 1969 19:00:00 EST
../../../../../../img/srcFileCovDistChart0.png 0% of files have more coverage
6   46   2   3
0   22   0.33   2
2     1  
1    
 
  ModuleValuesFinder       Line # 26 6 0% 2 8 0% 0.0
 
No Tests
 
1    /*
2    * Copyright 2007 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.lookup.keyvalues;
17   
18    import java.util.ArrayList;
19    import java.util.List;
20   
21    import org.kuali.rice.core.util.KeyValue;
22    import org.kuali.rice.core.util.ConcreteKeyValue;
23    import org.kuali.rice.kns.service.KNSServiceLocatorWeb;
24    import org.kuali.rice.kns.service.ModuleService;
25   
 
26    public class ModuleValuesFinder extends KeyValuesBase {
27   
28    /*
29    * @see org.kuali.keyvalues.KeyValuesFinder#getKeyValues()
30    */
 
31  0 toggle @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 : KNSServiceLocatorWeb.getKualiModuleService().getInstalledModuleServices()) {
37  0 keyValues.add(getKeyValue(moduleService.getModuleConfiguration().getNamespaceCode(),
38    KNSServiceLocatorWeb.getKualiModuleService().getNamespaceName(moduleService.getModuleConfiguration().getNamespaceCode())));
39    }
40  0 return keyValues;
41    }
42   
 
43  0 toggle private KeyValue getKeyValue(String moduleCode, String moduleName) {
44  0 return new ConcreteKeyValue(moduleCode, moduleCode + " - " + moduleName);
45    }
46    }