1 22 23 package org.jboss.resource.deployment.ds.metadata; 24 25 31 public class TransactionSupportFactory 32 { 33 34 public static TransactionSupportMetaData getTransactionSupport(String localName) 35 { 36 37 TransactionSupportMetaData txmd = null; 38 39 if (localName.equals("no-tx-datasource") || localName.equals("no-tx-connection-factory")) 40 { 41 txmd = TransactionSupportMetaData.NONE; 42 43 } 44 else if (localName.equals("local-tx-datasource") || localName.equals("tx-connection-factory")) 45 { 46 txmd = TransactionSupportMetaData.LOCAL; 48 49 } 50 else if (localName.equals("xa-datasource")) 51 { 52 txmd = TransactionSupportMetaData.XA; 53 } 54 55 return txmd; 56 57 } 58 59 } 60 | Popular Tags |