Coverage Report - org.kuali.rice.kns.config.GlobalResourceLoaderServiceFactoryBean
 
Classes in this File Line Coverage Branch Coverage Complexity
GlobalResourceLoaderServiceFactoryBean
0%
0/20
0%
0/6
1.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.kns.config;
 18  
 
 19  
 import org.kuali.rice.core.api.config.ConfigurationException;
 20  
 import org.kuali.rice.core.api.resourceloader.GlobalResourceLoader;
 21  
 import org.springframework.beans.factory.FactoryBean;
 22  
 import org.springframework.beans.factory.InitializingBean;
 23  
 
 24  
 /**
 25  
  * Exports services in the {@link org.kuali.rice.core.api.resourceloader.GlobalResourceLoader} as beans available to Spring.
 26  
  * 
 27  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 28  
  *
 29  
  */
 30  
 public class GlobalResourceLoaderServiceFactoryBean implements FactoryBean<Object>, InitializingBean {
 31  
 
 32  
         private String serviceName;
 33  
         private boolean singleton;
 34  
         private boolean mustExist;
 35  
         
 36  0
         public GlobalResourceLoaderServiceFactoryBean() {
 37  0
                 this.mustExist = true;
 38  0
         }
 39  
         
 40  
         public Object getObject() throws Exception {
 41  0
                 Object service = GlobalResourceLoader.getService(this.getServiceName());
 42  0
                 if (mustExist && service == null) {
 43  0
                         throw new IllegalStateException("Service must exist and no service could be located with name: " + this.getServiceName());
 44  
                 }
 45  0
                 return service;
 46  
         }
 47  
 
 48  
         public Class<?> getObjectType() {
 49  0
                 return Object.class;
 50  
         }
 51  
 
 52  
         public boolean isSingleton() {
 53  0
                 return singleton;
 54  
         }
 55  
 
 56  
         public String getServiceName() {
 57  0
                 return serviceName;
 58  
         }
 59  
 
 60  
         public void setServiceName(String serviceName) {
 61  0
                 this.serviceName = serviceName;
 62  0
         }
 63  
 
 64  
         public void setSingleton(boolean singleton) {
 65  0
                 this.singleton = singleton;
 66  0
         }
 67  
         
 68  
         public boolean isMustExist() {
 69  0
                 return mustExist;
 70  
         }
 71  
         
 72  
         public void setMustExist(boolean mustExist) {
 73  0
                 this.mustExist = mustExist;
 74  0
         }
 75  
         
 76  
 
 77  
         public void afterPropertiesSet() throws Exception {
 78  0
                 if (this.getServiceName() == null) {
 79  0
                         throw new ConfigurationException("No serviceName given.");
 80  
                 }
 81  0
         }
 82  
 
 83  
 }