| 1 | |
|
| 2 | |
|
| 3 | |
|
| 4 | |
|
| 5 | |
|
| 6 | |
|
| 7 | |
|
| 8 | |
|
| 9 | |
|
| 10 | |
|
| 11 | |
|
| 12 | |
|
| 13 | |
|
| 14 | |
|
| 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.ConcreteKeyValue; |
| 22 | |
import org.kuali.rice.core.util.KeyValue; |
| 23 | |
import org.kuali.rice.kns.service.KNSServiceLocatorWeb; |
| 24 | |
import org.kuali.rice.kns.service.KualiModuleService; |
| 25 | |
import org.kuali.rice.kns.service.ModuleService; |
| 26 | |
|
| 27 | |
|
| 28 | |
|
| 29 | |
|
| 30 | 0 | public class InstalledModulesValuesFinder extends KeyValuesBase { |
| 31 | |
|
| 32 | |
|
| 33 | |
|
| 34 | |
|
| 35 | |
@Override |
| 36 | |
public List<KeyValue> getKeyValues() { |
| 37 | 0 | List<KeyValue> keyValues = new ArrayList<KeyValue>(); |
| 38 | 0 | KualiModuleService kms = KNSServiceLocatorWeb.getKualiModuleService(); |
| 39 | 0 | for ( ModuleService moduleService : kms.getInstalledModuleServices() ) { |
| 40 | 0 | keyValues.add(new ConcreteKeyValue(moduleService.getModuleConfiguration().getNamespaceCode(), |
| 41 | |
moduleService.getModuleConfiguration().getNamespaceCode() + " - " + |
| 42 | |
kms.getNamespaceName(moduleService.getModuleConfiguration().getNamespaceCode()))); |
| 43 | |
} |
| 44 | |
|
| 45 | 0 | return keyValues; |
| 46 | |
} |
| 47 | |
|
| 48 | |
} |