Coverage Report - org.kuali.rice.edl.impl.service.EdlServiceLocator
 
Classes in this File Line Coverage Branch Coverage Complexity
EdlServiceLocator
0%
0/7
0%
0/4
1.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.edl.impl.service;
 18  
 
 19  
 import javax.xml.namespace.QName;
 20  
 
 21  
 import org.apache.log4j.Logger;
 22  
 import org.kuali.rice.core.api.config.module.RunMode;
 23  
 import org.kuali.rice.core.api.config.property.ConfigContext;
 24  
 import org.kuali.rice.core.api.resourceloader.GlobalResourceLoader;
 25  
 import org.kuali.rice.kew.service.KEWServiceLocator;
 26  
 import org.kuali.rice.kew.util.KEWConstants;
 27  
 
 28  0
 public class EdlServiceLocator {
 29  
         
 30  0
         private static final Logger LOG = Logger.getLogger(EdlServiceLocator.class);
 31  
 
 32  
         public static final String EDL_RUN_MODE_PROPERTY = "edl.mode";
 33  
         public static final String EDOCLITE_SERVICE = "enEDocLiteService";
 34  
         
 35  
 
 36  
     static <T> T getService(String serviceName) {
 37  0
         return GlobalResourceLoader.<T>getService(serviceName);
 38  
     }
 39  
 
 40  
         public static EDocLiteService getEDocLiteService() {
 41  0
                 return getService(EDOCLITE_SERVICE);
 42  
         }
 43  
         
 44  
         public static Object getBean(String serviceName) {
 45  0
                 if ( LOG.isDebugEnabled() ) {
 46  0
                         LOG.debug("Fetching service " + serviceName);
 47  
                 }
 48  0
                 return GlobalResourceLoader.getResourceLoader().getService(
 49  
                                 (RunMode.REMOTE.equals(RunMode.valueOf(ConfigContext.getCurrentContextConfig().getProperty(EDL_RUN_MODE_PROPERTY)))) ?
 50  
                                                 new QName(KEWConstants.KEW_MODULE_NAMESPACE, serviceName) : new QName(serviceName));
 51  
         }
 52  
 
 53  
 }