1 22 package org.jboss.mq.kernel; 23 24 import javax.transaction.TransactionManager ; 25 import javax.sql.DataSource ; 26 27 33 public class JDBCStateManager extends org.jboss.mq.sm.jdbc.JDBCStateManager 34 { 35 public void setTransactionManager(TransactionManager tm) 36 { 37 this.tm = tm; 38 } 39 40 public void setDatasource(DataSource ds) 41 { 42 this.dataSource = ds; 43 } 44 45 public void start() throws Exception  46 { 47 initDB(); 48 } 49 50 51 } 52 | Popular Tags |