View Javadoc

1   /**
2    * Copyright 2005-2012 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.krms.impl.util;
17  
18  import org.apache.log4j.Logger;
19  import org.kuali.rice.core.api.config.module.RunMode;
20  import org.kuali.rice.core.api.config.property.ConfigContext;
21  import org.kuali.rice.core.api.resourceloader.GlobalResourceLoader;
22  
23  import javax.xml.namespace.QName;
24  
25  /**
26   * Like {@link org.kuali.rice.krms.api.KrmsApiServiceLocator} only for non-remotable.
27   * @author Kuali Rice Team (rice.collab@kuali.org)
28   *
29   */
30  public class KRMSServiceLocatorInternal {
31  	
32  	public static final String KRMS_RUN_MODE_PROPERTY = "krms.mode";
33  	public static final String KRMS_MODULE_NAMESPACE = "KRMS";
34  
35  	private static final Logger LOG = Logger.getLogger(KRMSServiceLocatorInternal.class);
36  
37  	
38  	@SuppressWarnings("unchecked")
39  	public static <A> A getService(String serviceName) {
40  		return (A)getBean(serviceName);
41  	}
42  	
43  	public static Object getBean(String serviceName) {
44  		if ( LOG.isDebugEnabled() ) {
45  			LOG.debug("Fetching service " + serviceName);
46  		}
47          QName name = new QName(serviceName);
48          RunMode krmsRunMode = RunMode.valueOf(ConfigContext.getCurrentContextConfig().getProperty(KRMS_RUN_MODE_PROPERTY));
49          if (krmsRunMode == RunMode.REMOTE || krmsRunMode == RunMode.THIN) {
50              name = new QName(KRMS_MODULE_NAMESPACE, serviceName);
51          }
52  		return GlobalResourceLoader.getResourceLoader().getService(name);
53  	}
54  	
55  //    public static BusinessObjectService getBusinessObjectService() {
56  //    	return getService(KRMS_BO_SERVICE);
57  //    }
58  	
59  }