com.mchange.v2.c3p0.ComboPooledDataSource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.apache.servicemix.bundles.c3p0
Show all versions of org.apache.servicemix.bundles.c3p0
This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.
package com.mchange.v2.c3p0;
import java.io.*;
import javax.naming.*;
/**
* For the meaning of most of these properties, please see c3p0's top-level documentation!
*/
public final class ComboPooledDataSource extends AbstractComboPooledDataSource implements Serializable, Referenceable
{
public ComboPooledDataSource()
{ super(); }
public ComboPooledDataSource( boolean autoregister )
{ super( autoregister ); }
public ComboPooledDataSource(String configName)
{ super( configName ); }
// serialization stuff -- set up bound/constrained property event handlers on deserialization
private static final long serialVersionUID = 1;
private static final short VERSION = 0x0002;
private void writeObject( ObjectOutputStream oos ) throws IOException
{
oos.writeShort( VERSION );
}
private void readObject( ObjectInputStream ois ) throws IOException, ClassNotFoundException
{
short version = ois.readShort();
switch (version)
{
case VERSION:
//ok
break;
default:
throw new IOException("Unsupported Serialized Version: " + version);
}
}
}