1 22 package org.jboss.test.jcaprops.support; 23 24 import javax.resource.spi.ConnectionManager ; 25 26 32 public class PropertyTestConnectionFactoryImpl 33 { 34 private ConnectionManager cm; 35 36 public PropertyTestConnectionFactoryImpl(ConnectionManager cm) 37 { 38 this.cm = cm; 39 } 40 41 public PropertyTestConnection createConnection() throws Exception  42 { 43 return (PropertyTestConnection) cm.allocateConnection(null, new PropertyTestConnectionRequestInfo()); 44 } 45 46 } 47 | Popular Tags |