Coverage Report - org.kuali.rice.kim.service.KIMServiceLocatorInternal
 
Classes in this File Line Coverage Branch Coverage Complexity
KIMServiceLocatorInternal
0%
0/8
0%
0/4
1.5
 
 1  
 /**
 2  
  * Copyright 2005-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  
 package org.kuali.rice.kim.service;
 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  
 import org.kuali.rice.kim.api.KimConstants;
 23  
 import org.kuali.rice.kim.impl.group.GroupInternalService;
 24  
 
 25  
 import javax.xml.namespace.QName;
 26  
 
 27  
 /**
 28  
  * Service locator for KIM.
 29  
  *
 30  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 31  
  *
 32  
  */
 33  0
 public final class KIMServiceLocatorInternal {
 34  
 
 35  0
         private static final Logger LOG = Logger.getLogger(KIMServiceLocatorInternal.class);
 36  
 
 37  
         public static final String KIM_RUN_MODE_PROPERTY = "kim.mode";
 38  
 
 39  
     public static final String KIM_UI_DOCUMENT_SERVICE = "kimUiDocumentService";
 40  
         public static final String GROUP_INTERNAL_SERVICE = "groupInternalService";
 41  
 
 42  
     public static Object getService(String serviceName) {
 43  0
                 return getBean(serviceName);
 44  
         }
 45  
 
 46  
         public static Object getBean(String serviceName) {
 47  0
                 if ( LOG.isDebugEnabled() ) {
 48  0
                         LOG.debug("Fetching service " + serviceName);
 49  
                 }
 50  0
                 return GlobalResourceLoader.getResourceLoader().getService(
 51  
                 (RunMode.REMOTE.equals(RunMode.valueOf(ConfigContext.getCurrentContextConfig().getProperty(KIM_RUN_MODE_PROPERTY)))) ?
 52  
                         new QName(KimConstants.KIM_MODULE_NAMESPACE, serviceName) : new QName(serviceName));
 53  
         }
 54  
 
 55  
     public static UiDocumentService getUiDocumentService() {
 56  0
             return (UiDocumentService)getService(KIM_UI_DOCUMENT_SERVICE);
 57  
     }
 58  
 
 59  
     public static GroupInternalService getGroupInternalService() {
 60  0
         return (GroupInternalService)getService(GROUP_INTERNAL_SERVICE);
 61  
     }
 62  
 
 63  
 }