View Javadoc

1   /**
2    * Copyright 2005-2013 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.kew.util;
17  
18  import org.apache.commons.lang.StringUtils;
19  import org.apache.commons.lang.text.StrLookup;
20  import org.kuali.rice.coreservice.api.CoreServiceApiServiceLocator;
21  import org.kuali.rice.core.api.config.property.ConfigContext;
22  import org.kuali.rice.coreservice.api.parameter.ParameterKey;
23  import org.kuali.rice.coreservice.framework.CoreFrameworkServiceLocator;
24  import org.kuali.rice.kew.api.KewApiConstants;
25  import org.kuali.rice.krad.util.KRADConstants;
26  
27  /**
28   * Looks up Strings from the Config and System Parameters.
29   *
30   * @author Kuali Rice Team (rice.collab@kuali.org)
31   */
32  public class ConfigStringLookup extends StrLookup {
33  	
34  	private final String applicationId;
35  	
36  	public ConfigStringLookup() {
37          this(null);
38  	}
39  	
40  	public ConfigStringLookup(String applicationId) {
41  		this.applicationId = applicationId;
42  	}
43  
44      @Override
45      public String lookup(String propertyName) {
46          if (StringUtils.isBlank(propertyName)) {
47              return null;
48          }
49  
50          String paramValue = null;
51          // check system parameters first
52          if (StringUtils.isBlank(applicationId)) {
53              paramValue = CoreFrameworkServiceLocator.getParameterService().getParameterValueAsString(
54                      KewApiConstants.KEW_NAMESPACE, KRADConstants.DetailTypes.ALL_DETAIL_TYPE, propertyName);
55          } else {
56              ParameterKey parameterKey = ParameterKey.create(applicationId, KewApiConstants.KEW_NAMESPACE,
57                      KRADConstants.DetailTypes.ALL_DETAIL_TYPE, propertyName);
58              paramValue = CoreServiceApiServiceLocator.getParameterRepositoryService().getParameterValueAsString(parameterKey);
59          }
60  
61          if (paramValue == null) {
62              paramValue = ConfigContext.getCurrentContextConfig().getProperty(propertyName);
63          }
64          return paramValue;
65      }
66  
67  }