Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
ConfigStringLookup |
|
| 2.6666666666666665;2.667 |
1 | /* | |
2 | * Copyright 2006-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 | ||
17 | package org.kuali.rice.kew.util; | |
18 | ||
19 | import org.apache.commons.lang.StringUtils; | |
20 | import org.apache.commons.lang.text.StrLookup; | |
21 | import org.kuali.rice.core.api.config.property.ConfigContext; | |
22 | import org.kuali.rice.core.framework.services.CoreFrameworkServiceLocator; | |
23 | import org.kuali.rice.kns.service.KNSServiceLocatorWeb; | |
24 | import org.kuali.rice.kns.util.KNSConstants; | |
25 | ||
26 | /** | |
27 | * Looks up Strings from the Config and System Parameters. | |
28 | * | |
29 | * @author Kuali Rice Team (rice.collab@kuali.org) | |
30 | */ | |
31 | public class ConfigStringLookup extends StrLookup { | |
32 | private String namespace; | |
33 | ||
34 | 0 | public ConfigStringLookup() { |
35 | ||
36 | 0 | } |
37 | ||
38 | 0 | public ConfigStringLookup(String namespace) { |
39 | 0 | this.namespace = namespace; |
40 | 0 | } |
41 | ||
42 | @Override | |
43 | public String lookup(String propertyName) { | |
44 | 0 | if (StringUtils.isBlank(propertyName)) { |
45 | 0 | return null; |
46 | } | |
47 | ||
48 | 0 | String paramValue = null; |
49 | ||
50 | // TODO temporarily disabling configuration parameter resolution against the racms because it's been causing some issues | |
51 | 0 | if ( namespace != null ) { |
52 | 0 | paramValue = KNSServiceLocatorWeb.getRiceApplicationConfigurationMediationService().getConfigurationParameter(namespace, propertyName); |
53 | } | |
54 | ||
55 | // check system parameters first | |
56 | 0 | if ( paramValue == null ) { |
57 | 0 | paramValue = CoreFrameworkServiceLocator.getParameterService().getParameterValueAsString(KEWConstants.KEW_NAMESPACE, KNSConstants.DetailTypes.ALL_DETAIL_TYPE, propertyName); |
58 | } | |
59 | 0 | if (paramValue == null) { |
60 | 0 | paramValue = ConfigContext.getCurrentContextConfig().getProperty(propertyName); |
61 | } | |
62 | 0 | return paramValue; |
63 | } | |
64 | ||
65 | } |