1 22 package org.jboss.test.proxyfactory.support; 23 24 import javax.resource.spi.ManagedConnectionFactory ; 25 26 32 public class TestConnection 33 { 34 ManagedConnectionFactory mcf; 35 36 public TestConnection(ManagedConnectionFactory mcf) 37 { 38 this.mcf = mcf; 39 } 40 41 public ManagedConnectionFactory getManagedConnectionFactory() 42 { 43 return mcf; 44 } 45 } 46 | Popular Tags |