Coverage Report - org.kuali.rice.kns.web.servlet.dwr.GlobalResourceDelegatingSpringCreator
 
Classes in this File Line Coverage Branch Coverage Complexity
GlobalResourceDelegatingSpringCreator
0%
0/7
0%
0/4
4
 
 1  
 
 2  
 /*
 3  
  * Copyright 2007 The Kuali Foundation
 4  
  *
 5  
  * Licensed under the Educational Community License, Version 2.0 (the "License");
 6  
  * you may not use this file except in compliance with the License.
 7  
  * You may obtain a copy of the License at
 8  
  *
 9  
  * http://www.opensource.org/licenses/ecl2.php
 10  
  *
 11  
  * Unless required by applicable law or agreed to in writing, software
 12  
  * distributed under the License is distributed on an "AS IS" BASIS,
 13  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 14  
  * See the License for the specific language governing permissions and
 15  
  * limitations under the License.
 16  
  */package org.kuali.rice.kns.web.servlet.dwr;
 17  
 
 18  
 import org.directwebremoting.spring.SpringCreator;
 19  
 import org.kuali.rice.core.api.resourceloader.GlobalResourceLoader;
 20  
 import org.springframework.beans.factory.BeanFactory;
 21  
 
 22  
 
 23  
 /**
 24  
  * A {@link SpringCreator} that checks the {@link GlobalResourceLoader} for the
 25  
  * bean name in question if the default {@link BeanFactory} (the applications)
 26  
  * does not have the bean in question.
 27  
  * 
 28  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 29  
  * 
 30  
  */
 31  0
 public class GlobalResourceDelegatingSpringCreator extends SpringCreator {
 32  
         
 33  
         @Override
 34  
         public Object getInstance() throws InstantiationException {
 35  0
                 Object bean = GlobalResourceLoader.getService(this.getBeanName());
 36  0
                 if (bean == null) {
 37  
                         //weird DWR passes the scriptName rather than beanName - so trying the script name.
 38  0
                         bean = GlobalResourceLoader.getService(this.getJavascript());
 39  0
                         if (bean == null) {
 40  0
                                 throw new InstantiationException("Unable to find bean " + this.getBeanName() + " in Rice Global Resource Loader");
 41  
                         }
 42  
                 }
 43  0
                 return bean;
 44  
         }
 45  
 
 46  
 }