1 22 package org.jboss.test.jcaprops.support; 23 24 30 public class PropertyTestConnectionImpl implements PropertyTestConnection 31 { 32 private PropertyTestManagedConnection mc; 33 34 public void close() 35 { 36 if (mc != null) 37 mc.closeHandle(this); 38 } 39 40 void setManagedConnection(PropertyTestManagedConnection mc) 41 { 42 this.mc = mc; 43 } 44 45 } 46 | Popular Tags |