Coverage Report - org.mule.config.spring.parsers.specific.TransactionConfigDefinitionParser
 
Classes in this File Line Coverage Branch Coverage Complexity
TransactionConfigDefinitionParser
0%
0/3
N/A
1
 
 1  
 /*
 2  
  * $Id:TransactionConfigDefinitionParser.java 5187 2007-02-16 18:00:42Z rossmason $
 3  
  * --------------------------------------------------------------------------------------
 4  
  * Copyright (c) MuleSource, Inc.  All rights reserved.  http://www.mulesource.com
 5  
  *
 6  
  * The software in this package is published under the terms of the CPAL v1.0
 7  
  * license, a copy of which has been included with this distribution in the
 8  
  * LICENSE.txt file.
 9  
  */
 10  
 package org.mule.config.spring.parsers.specific;
 11  
 
 12  
 import org.mule.config.spring.parsers.generic.ChildDefinitionParser;
 13  
 import org.mule.transaction.MuleTransactionConfig;
 14  
 
 15  
 public class TransactionConfigDefinitionParser extends ChildDefinitionParser
 16  
 {
 17  
 
 18  
     public TransactionConfigDefinitionParser()
 19  
     {
 20  0
         super("transactionConfig", MuleTransactionConfig.class);
 21  0
         addMapping("action", "NONE=0,ALWAYS_BEGIN=1,BEGIN_OR_JOIN=2,ALWAYS_JOIN=3,JOIN_IF_POSSIBLE=4");
 22  0
     }
 23  
 
 24  
 }