Coverage Report - org.kuali.rice.core.jta.TransactionManagerFactoryBean
 
Classes in this File Line Coverage Branch Coverage Complexity
TransactionManagerFactoryBean
0%
0/23
0%
0/10
2.5
 
 1  
 /*
 2  
  * Copyright 2007 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.core.jta;
 17  
 
 18  
 import javax.naming.NamingException;
 19  
 import javax.transaction.TransactionManager;
 20  
 
 21  
 import org.apache.commons.lang.StringUtils;
 22  
 import org.kuali.rice.core.config.Config;
 23  
 import org.kuali.rice.core.config.ConfigContext;
 24  
 import org.kuali.rice.core.config.ConfigurationException;
 25  
 import org.kuali.rice.core.util.RiceConstants;
 26  
 import org.springframework.beans.factory.FactoryBean;
 27  
 import org.springframework.jndi.JndiTemplate;
 28  
 
 29  
 
 30  
 /**
 31  
  * Factory bean that supplies a TransactionManager object from the the current context
 32  
  * (i.e. plugin, embedding webapp) Config object map if defined therein (under the Config.TRANSACTION_MANAGER_OBJ key),
 33  
  * from JNDI if {@link Config#TRANSACTION_MANAGER_JNDI} is defined,
 34  
  * or from a default declaratively assigned in containing bean factory.
 35  
  * 
 36  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 37  
  */
 38  0
 public class TransactionManagerFactoryBean implements FactoryBean {
 39  
 
 40  
         private TransactionManager defaultTransactionManager;
 41  
         private JndiTemplate jndiTemplate;
 42  
         
 43  
         public Object getObject() throws Exception {
 44  
                 
 45  0
                 if (ConfigContext.getCurrentContextConfig().getObject(RiceConstants.SPRING_TRANSACTION_MANAGER) != null) {
 46  0
                         return null;
 47  
                 }
 48  
                 
 49  0
                 TransactionManager transactionManager =  (TransactionManager)ConfigContext.getCurrentContextConfig().getObject(RiceConstants.TRANSACTION_MANAGER_OBJ);
 50  0
                 if (transactionManager == null) {
 51  0
                         String transactionManagerJndiName = ConfigContext.getCurrentContextConfig().getProperty(RiceConstants.TRANSACTION_MANAGER_JNDI);
 52  0
                         if (!StringUtils.isEmpty(transactionManagerJndiName)) {
 53  0
                                 if (this.jndiTemplate == null) {
 54  0
                                     this.jndiTemplate = new JndiTemplate();
 55  
                                 }
 56  
                                 try {
 57  0
                                         transactionManager = (TransactionManager)this.jndiTemplate.lookup(transactionManagerJndiName, TransactionManager.class);
 58  0
                                 } catch (NamingException e) {
 59  0
                                         throw new ConfigurationException("Could not locate the TransactionManager at the given JNDI location: '" + transactionManagerJndiName + "'", e);
 60  0
                                 }
 61  
                         }
 62  
                         
 63  
                 }
 64  0
                 if (transactionManager != null) {
 65  0
                         return transactionManager;
 66  
                 }
 67  0
                 return this.defaultTransactionManager;
 68  
         }
 69  
 
 70  
         public Class getObjectType() {
 71  0
                 return TransactionManager.class;
 72  
         }
 73  
 
 74  
         public boolean isSingleton() {
 75  0
                 return true;
 76  
         }
 77  
         
 78  
         public void setDefaultTransactionManager(TransactionManager transactionManager) {
 79  0
             this.defaultTransactionManager = transactionManager;
 80  0
         }
 81  
 
 82  
         public JndiTemplate getJndiTemplate() {
 83  0
                 return this.jndiTemplate;
 84  
         }
 85  
 
 86  
         public void setJndiTemplate(JndiTemplate jndiTemplate) {
 87  0
                 this.jndiTemplate = jndiTemplate;
 88  0
         }
 89  
 
 90  
 }