1 45 package org.openejb.spi; 46 47 import java.util.Properties ; 48 49 57 public class ConnectionManagerConfig { 58 public Properties properties = new Properties (); 59 public boolean containerManagedSignOn = true; 60 61 public ConnectionManagerConfig() { 62 } 63 public ConnectionManagerConfig(Properties properties, boolean containerManagedSignOn) { 64 this.properties = properties; 65 this.containerManagedSignOn = containerManagedSignOn; 66 } 67 } | Popular Tags |