Coverage Report - org.kuali.rice.kew.resourceloader.CoreResourceLoader
 
Classes in this File Line Coverage Branch Coverage Complexity
CoreResourceLoader
0%
0/28
0%
0/20
2.5
 
 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.resourceloader;
 18  
 
 19  
 import org.apache.commons.lang.StringUtils;
 20  
 import org.kuali.rice.core.api.config.property.ConfigContext;
 21  
 import org.kuali.rice.core.api.reflect.ObjectDefinition;
 22  
 import org.kuali.rice.core.api.reflect.ObjectDefinition;
 23  
 import org.kuali.rice.core.impl.resourceloader.BaseWrappingResourceLoader;
 24  
 import org.kuali.rice.core.impl.resourceloader.BaseWrappingResourceLoader;
 25  
 import org.kuali.rice.core.api.resourceloader.ServiceLocator;
 26  
 import org.kuali.rice.kew.plugin.PluginRegistry;
 27  
 import org.kuali.rice.kew.service.KEWServiceLocator;
 28  
 import org.kuali.rice.kew.util.KEWConstants;
 29  
 
 30  
 import javax.xml.namespace.QName;
 31  
 
 32  
 
 33  
 /**
 34  
  * A resource loader which is responsible for loading resources from the Workflow ConfigContext.
 35  
  *
 36  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 37  
  */
 38  
 public class CoreResourceLoader extends BaseWrappingResourceLoader {
 39  
 
 40  0
         private static final org.apache.log4j.Logger LOG = org.apache.log4j.Logger
 41  
                         .getLogger(CoreResourceLoader.class);
 42  
 
 43  0
         public static final QName NAME = new QName(ConfigContext.getCurrentContextConfig().getServiceNamespace(), "KEW_SPRING+PLUGIN_REGISTRY_CONTAINER_RESOURCE_LOADER");
 44  
 
 45  
         private final PluginRegistry registry;
 46  
 
 47  
         public CoreResourceLoader(ServiceLocator serviceLocator, PluginRegistry registry) {
 48  0
                 super(CoreResourceLoader.NAME, serviceLocator);
 49  0
                 this.registry = registry;
 50  0
         }
 51  
 
 52  
         /**
 53  
          * Overrides the standard getService method to looks for the service in the plugin if it can't find it in the core.
 54  
          */
 55  
         public Object getService(QName serviceName) {
 56  0
                 if (isRemoteService(serviceName)) {
 57  0
                         return null;
 58  
                 }
 59  0
                 Object service = super.getService(serviceName);
 60  0
                 if (service == null && getRegistry() != null) {
 61  0
                     service = getRegistry().getService(serviceName);
 62  
                 }
 63  0
                 return service;
 64  
         }
 65  
 
 66  
 
 67  
 
 68  
         @Override
 69  
         public Object getObject(ObjectDefinition objectDefinition) {
 70  0
             Object object = super.getObject(objectDefinition);
 71  0
             if (object == null && getRegistry() != null) {
 72  0
                 object = getRegistry().getObject(objectDefinition);
 73  
             }
 74  0
             return object;
 75  
         }
 76  
 
 77  
         @Override
 78  
         protected boolean shouldWrapService(QName serviceName, Object service) {
 79  
                 // transaction template is not wrappable because it does not implement an interface
 80  0
                 if (serviceName.getLocalPart().equals("transactionTemplate")) {
 81  0
                         return false;
 82  
                 }
 83  0
                 return super.shouldWrapService(serviceName, service);
 84  
         }
 85  
         
 86  
         
 87  
         
 88  
         @Override
 89  
         public void stop() throws Exception {
 90  0
                 if (getRegistry() != null) {
 91  0
                         registry.stop();
 92  
                 }
 93  0
                 super.stop();
 94  0
         }
 95  
 
 96  
         /**
 97  
          * Returns true if the given service name is one which should be loaded from the service bus.  This is used
 98  
          * primarily for embedded clients that want to reference the workgroup and user services on a standalone
 99  
          * server.
 100  
          */
 101  
         protected boolean isRemoteService(QName serviceName) {
 102  0
             return (useRemoteEmailServices() &&
 103  
                             serviceName.getLocalPart().equals(KEWServiceLocator.IMMEDIATE_EMAIL_REMINDER_SERVICE));
 104  
         }
 105  
                 
 106  
         protected boolean useRemoteEmailServices() {
 107  0
             String useRemoteEmailServicesValue = ConfigContext.getCurrentContextConfig().getProperty(KEWConstants.USE_REMOTE_EMAIL_SERVICES);
 108  0
             if (!StringUtils.isBlank(useRemoteEmailServicesValue)) {
 109  0
                 return new Boolean(useRemoteEmailServicesValue.trim());
 110  
             }
 111  0
             return false;
 112  
         }
 113  
 
 114  
         public PluginRegistry getRegistry() {
 115  0
                 return registry;
 116  
         }
 117  
         
 118  
 }