Description: Make sources Java7 compatible

diff --git a/src/net/sf/hajdbc/sql/DataSource.java b/src/net/sf/hajdbc/sql/DataSource.java
index fea64c4..054afa8 100644
--- a/src/net/sf/hajdbc/sql/DataSource.java
+++ b/src/net/sf/hajdbc/sql/DataSource.java
@@ -120,4 +120,9 @@ public class DataSource extends CommonDataSourceProxy<javax.sql.DataSource> impl
 	{
 		return new DataSourceReference(this.getCluster(), this.getConfig());
 	}
+
+        // Java7 Compat
+        public java.util.logging.Logger getParentLogger() throws java.sql.SQLFeatureNotSupportedException {
+            throw new java.sql.SQLFeatureNotSupportedException();
+        }
 }
diff --git a/src/net/sf/hajdbc/sql/Driver.java b/src/net/sf/hajdbc/sql/Driver.java
index cebdf16..a288ccc 100644
--- a/src/net/sf/hajdbc/sql/Driver.java
+++ b/src/net/sf/hajdbc/sql/Driver.java
@@ -198,4 +198,10 @@ public final class Driver implements java.sql.Driver
 		
 		return matcher.group(1);
 	}
+
+        // Java7 Compat
+        public java.util.logging.Logger getParentLogger() throws java.sql.SQLFeatureNotSupportedException {
+            throw new java.sql.SQLFeatureNotSupportedException();
+        }
+
 }
diff --git a/src/net/sf/hajdbc/sql/pool/ConnectionPoolDataSource.java b/src/net/sf/hajdbc/sql/pool/ConnectionPoolDataSource.java
index e71c93b..ee55190 100644
--- a/src/net/sf/hajdbc/sql/pool/ConnectionPoolDataSource.java
+++ b/src/net/sf/hajdbc/sql/pool/ConnectionPoolDataSource.java
@@ -105,4 +105,9 @@ public class ConnectionPoolDataSource extends CommonDataSourceProxy<javax.sql.Co
 	{
 		return new ConnectionPoolDataSourceReference(this.getCluster(), this.getConfig());
 	}
+
+        // Java7 Compat
+        public java.util.logging.Logger getParentLogger() throws java.sql.SQLFeatureNotSupportedException {
+            throw new java.sql.SQLFeatureNotSupportedException();
+        }
 }
diff --git a/src/net/sf/hajdbc/sql/xa/XADataSource.java b/src/net/sf/hajdbc/sql/xa/XADataSource.java
index 6500c5e..e4a457b 100644
--- a/src/net/sf/hajdbc/sql/xa/XADataSource.java
+++ b/src/net/sf/hajdbc/sql/xa/XADataSource.java
@@ -104,4 +104,10 @@ public class XADataSource extends CommonDataSourceProxy<javax.sql.XADataSource>
 	{
 		return new XADataSourceReference(this.getCluster(), this.getConfig());
 	}
+
+        // Java7 Compat
+        public java.util.logging.Logger getParentLogger() throws java.sql.SQLFeatureNotSupportedException {
+            throw new java.sql.SQLFeatureNotSupportedException();
+        }
+
 }
