jicarilla-suf/suf-components/datasource/src/java/org/apache/avalon/excalibur/datasource AbstractJdbcConnection.java,1.2,1.3 DataSourceComponent.java,1.2,1.3 InformixDataSource.java,1.2,1.3 J2eeDataSource.java,1.2,1.3 Jdbc3Connection.java,1.1.1.1,1.2 JdbcConnection.java,1.1.1.1,1.2 JdbcConnectionFactory.java,1.2,1.3 JdbcConnectionPool.java,1.2,1.3 JdbcDataSource.java,1.2,1.3 NoAvailableConnectionException.java,1.1.1.1,1.2 NoValidConnectionException.java,1.1.1.1,1.2 PoolSettable.java,1.2,1.3 ProxiedJdbcConnection.java,1.1.1.1,1.2 ResourceLimitingJdbcConnectionPool.java,1.2,1.3 ResourceLimitingJdbcDataSource.java,1.2,1.3

Leo Simons <[email protected]> Sun, 11 Apr 2004 20:55:03 +0000
Newsgroups gmane.comp.java.jicarilla.cvs
Message-ID <[email protected]>
Update of /cvsroot/jicarilla/jicarilla-suf/suf-components/datasource/src/java/org/apache/avalon/excalibur/datasource
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24597/suf-components/datasource/src/java/org/apache/avalon/excalibur/datasource

Modified Files:
	AbstractJdbcConnection.java DataSourceComponent.java 
	InformixDataSource.java J2eeDataSource.java 
	Jdbc3Connection.java JdbcConnection.java 
	JdbcConnectionFactory.java JdbcConnectionPool.java 
	JdbcDataSource.java NoAvailableConnectionException.java 
	NoValidConnectionException.java PoolSettable.java 
	ProxiedJdbcConnection.java 
	ResourceLimitingJdbcConnectionPool.java 
	ResourceLimitingJdbcDataSource.java 
Log Message:
Add "we modified stuff" disclaimer as required by license

Index: InformixDataSource.java
===================================================================
RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/datasource/src/java/org/apache/avalon/excalibur/datasource/InformixDataSource.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- InformixDataSource.java	10 Apr 2004 22:50:57 -0000	1.2
+++ InformixDataSource.java	11 Apr 2004 20:55:01 -0000	1.3
@@ -13,8 +13,28 @@
  * 
  * See the License for the specific language governing permissions and
  * limitations under the License.
+ *
+ * ====================================================================
+ *
+ * This file has been modified from the original file as it was
+ * distributed by The Apache Software Foundation. These modifications
+ * are
+ * 
+ * copyright (c) 2004 Leo Simons
+ *
+ * These modifications are licensed under the Apache License,
+ * Version 2.0 (the "License"); you may not use this file except in
+ * compliance with the License. You may obtain a copy of the License at
+ * 
+ *        http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
-
 package org.apache.avalon.excalibur.datasource;
 
 import org.apache.avalon.framework.configuration.Configuration;

Index: ResourceLimitingJdbcConnectionPool.java
===================================================================
RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/datasource/src/java/org/apache/avalon/excalibur/datasource/ResourceLimitingJdbcConnectionPool.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- ResourceLimitingJdbcConnectionPool.java	10 Apr 2004 22:50:57 -0000	1.2
+++ ResourceLimitingJdbcConnectionPool.java	11 Apr 2004 20:55:01 -0000	1.3
@@ -13,8 +13,28 @@
  * 
  * See the License for the specific language governing permissions and
  * limitations under the License.
+ *
+ * ====================================================================
+ *
+ * This file has been modified from the original file as it was
+ * distributed by The Apache Software Foundation. These modifications
+ * are
+ * 
+ * copyright (c) 2004 Leo Simons
+ *
+ * These modifications are licensed under the Apache License,
+ * Version 2.0 (the "License"); you may not use this file except in
+ * compliance with the License. You may obtain a copy of the License at
+ * 
+ *        http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
-
 package org.apache.avalon.excalibur.datasource;
 
 import org.apache.avalon.excalibur.pool.ObjectFactory;

Index: JdbcConnection.java
===================================================================
RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/datasource/src/java/org/apache/avalon/excalibur/datasource/JdbcConnection.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- JdbcConnection.java	10 Apr 2004 14:40:37 -0000	1.1.1.1
+++ JdbcConnection.java	11 Apr 2004 20:55:01 -0000	1.2
@@ -13,8 +13,28 @@
  * 
  * See the License for the specific language governing permissions and
  * limitations under the License.
+ *
+ * ====================================================================
+ *
+ * This file has been modified from the original file as it was
+ * distributed by The Apache Software Foundation. These modifications
+ * are
+ * 
+ * copyright (c) 2004 Leo Simons
+ *
+ * These modifications are licensed under the Apache License,
+ * Version 2.0 (the "License"); you may not use this file except in
+ * compliance with the License. You may obtain a copy of the License at
+ * 
+ *        http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
-
 package org.apache.avalon.excalibur.datasource;
 
 import java.sql.Connection;

Index: JdbcConnectionFactory.java
===================================================================
RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/datasource/src/java/org/apache/avalon/excalibur/datasource/JdbcConnectionFactory.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- JdbcConnectionFactory.java	10 Apr 2004 22:50:57 -0000	1.2
+++ JdbcConnectionFactory.java	11 Apr 2004 20:55:01 -0000	1.3
@@ -13,8 +13,28 @@
  * 
  * See the License for the specific language governing permissions and
  * limitations under the License.
+ *
+ * ====================================================================
+ *
+ * This file has been modified from the original file as it was
+ * distributed by The Apache Software Foundation. These modifications
+ * are
+ * 
+ * copyright (c) 2004 Leo Simons
+ *
+ * These modifications are licensed under the Apache License,
+ * Version 2.0 (the "License"); you may not use this file except in
+ * compliance with the License. You may obtain a copy of the License at
+ * 
+ *        http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
-
 package org.apache.avalon.excalibur.datasource;
 
 import org.apache.avalon.excalibur.pool.ObjectFactory;

Index: ResourceLimitingJdbcDataSource.java
===================================================================
RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/datasource/src/java/org/apache/avalon/excalibur/datasource/ResourceLimitingJdbcDataSource.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- ResourceLimitingJdbcDataSource.java	10 Apr 2004 22:50:57 -0000	1.2
+++ ResourceLimitingJdbcDataSource.java	11 Apr 2004 20:55:01 -0000	1.3
@@ -13,8 +13,28 @@
  * 
  * See the License for the specific language governing permissions and
  * limitations under the License.
+ *
+ * ====================================================================
+ *
+ * This file has been modified from the original file as it was
+ * distributed by The Apache Software Foundation. These modifications
+ * are
+ * 
+ * copyright (c) 2004 Leo Simons
+ *
+ * These modifications are licensed under the Apache License,
+ * Version 2.0 (the "License"); you may not use this file except in
+ * compliance with the License. You may obtain a copy of the License at
+ * 
+ *        http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
-
 package org.apache.avalon.excalibur.datasource;
 
 import org.apache.avalon.excalibur.pool.InstrumentedResourceLimitingPool;

Index: J2eeDataSource.java
===================================================================
RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/datasource/src/java/org/apache/avalon/excalibur/datasource/J2eeDataSource.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- J2eeDataSource.java	10 Apr 2004 22:50:57 -0000	1.2
+++ J2eeDataSource.java	11 Apr 2004 20:55:01 -0000	1.3
@@ -13,8 +13,28 @@
  * 
  * See the License for the specific language governing permissions and
  * limitations under the License.
+ *
+ * ====================================================================
+ *
+ * This file has been modified from the original file as it was
+ * distributed by The Apache Software Foundation. These modifications
+ * are
+ * 
+ * copyright (c) 2004 Leo Simons
+ *
+ * These modifications are licensed under the Apache License,
+ * Version 2.0 (the "License"); you may not use this file except in
+ * compliance with the License. You may obtain a copy of the License at
+ * 
+ *        http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
-
 package org.apache.avalon.excalibur.datasource;
 
 import org.apache.avalon.framework.configuration.Configuration;

Index: Jdbc3Connection.java
===================================================================
RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/datasource/src/java/org/apache/avalon/excalibur/datasource/Jdbc3Connection.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- Jdbc3Connection.java	10 Apr 2004 14:40:37 -0000	1.1.1.1
+++ Jdbc3Connection.java	11 Apr 2004 20:55:01 -0000	1.2
@@ -13,8 +13,28 @@
  * 
  * See the License for the specific language governing permissions and
  * limitations under the License.
+ *
+ * ====================================================================
+ *
+ * This file has been modified from the original file as it was
+ * distributed by The Apache Software Foundation. These modifications
+ * are
+ * 
+ * copyright (c) 2004 Leo Simons
+ *
+ * These modifications are licensed under the Apache License,
+ * Version 2.0 (the "License"); you may not use this file except in
+ * compliance with the License. You may obtain a copy of the License at
+ * 
+ *        http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
-
 package org.apache.avalon.excalibur.datasource;
 
 import java.sql.Connection;

Index: NoValidConnectionException.java
===================================================================
RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/datasource/src/java/org/apache/avalon/excalibur/datasource/NoValidConnectionException.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- NoValidConnectionException.java	10 Apr 2004 14:40:37 -0000	1.1.1.1
+++ NoValidConnectionException.java	11 Apr 2004 20:55:01 -0000	1.2
@@ -13,8 +13,28 @@
  * 
  * See the License for the specific language governing permissions and
  * limitations under the License.
+ *
+ * ====================================================================
+ *
+ * This file has been modified from the original file as it was
+ * distributed by The Apache Software Foundation. These modifications
+ * are
+ * 
+ * copyright (c) 2004 Leo Simons
+ *
+ * These modifications are licensed under the Apache License,
+ * Version 2.0 (the "License"); you may not use this file except in
+ * compliance with the License. You may obtain a copy of the License at
+ * 
+ *        http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
-
 package org.apache.avalon.excalibur.datasource;
 
 import java.sql.SQLException;

Index: JdbcConnectionPool.java
===================================================================
RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/datasource/src/java/org/apache/avalon/excalibur/datasource/JdbcConnectionPool.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- JdbcConnectionPool.java	10 Apr 2004 22:50:57 -0000	1.2
+++ JdbcConnectionPool.java	11 Apr 2004 20:55:01 -0000	1.3
@@ -13,8 +13,28 @@
  * 
  * See the License for the specific language governing permissions and
  * limitations under the License.
+ *
+ * ====================================================================
+ *
+ * This file has been modified from the original file as it was
+ * distributed by The Apache Software Foundation. These modifications
+ * are
+ * 
+ * copyright (c) 2004 Leo Simons
+ *
+ * These modifications are licensed under the Apache License,
+ * Version 2.0 (the "License"); you may not use this file except in
+ * compliance with the License. You may obtain a copy of the License at
+ * 
+ *        http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
-
 package org.apache.avalon.excalibur.datasource;
 
 import org.apache.avalon.excalibur.pool.DefaultPoolController;

Index: DataSourceComponent.java
===================================================================
RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/datasource/src/java/org/apache/avalon/excalibur/datasource/DataSourceComponent.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- DataSourceComponent.java	10 Apr 2004 22:50:57 -0000	1.2
+++ DataSourceComponent.java	11 Apr 2004 20:55:01 -0000	1.3
@@ -13,8 +13,28 @@
  * 
  * See the License for the specific language governing permissions and
  * limitations under the License.
+ *
+ * ====================================================================
+ *
+ * This file has been modified from the original file as it was
+ * distributed by The Apache Software Foundation. These modifications
+ * are
+ * 
+ * copyright (c) 2004 Leo Simons
+ *
+ * These modifications are licensed under the Apache License,
+ * Version 2.0 (the "License"); you may not use this file except in
+ * compliance with the License. You may obtain a copy of the License at
+ * 
+ *        http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
-
 package org.apache.avalon.excalibur.datasource;
 
 import org.apache.avalon.framework.component.Component;

Index: ProxiedJdbcConnection.java
===================================================================
RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/datasource/src/java/org/apache/avalon/excalibur/datasource/ProxiedJdbcConnection.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- ProxiedJdbcConnection.java	10 Apr 2004 14:40:37 -0000	1.1.1.1
+++ ProxiedJdbcConnection.java	11 Apr 2004 20:55:01 -0000	1.2
@@ -13,8 +13,28 @@
  * 
  * See the License for the specific language governing permissions and
  * limitations under the License.
+ *
+ * ====================================================================
+ *
+ * This file has been modified from the original file as it was
+ * distributed by The Apache Software Foundation. These modifications
+ * are
+ * 
+ * copyright (c) 2004 Leo Simons
+ *
+ * These modifications are licensed under the Apache License,
+ * Version 2.0 (the "License"); you may not use this file except in
+ * compliance with the License. You may obtain a copy of the License at
+ * 
+ *        http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
-
 package org.apache.avalon.excalibur.datasource;
 
 import java.lang.reflect.InvocationHandler;

Index: JdbcDataSource.java
===================================================================
RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/datasource/src/java/org/apache/avalon/excalibur/datasource/JdbcDataSource.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- JdbcDataSource.java	10 Apr 2004 22:50:57 -0000	1.2
+++ JdbcDataSource.java	11 Apr 2004 20:55:01 -0000	1.3
@@ -13,8 +13,28 @@
  * 
  * See the License for the specific language governing permissions and
  * limitations under the License.
+ *
+ * ====================================================================
+ *
+ * This file has been modified from the original file as it was
+ * distributed by The Apache Software Foundation. These modifications
+ * are
+ * 
+ * copyright (c) 2004 Leo Simons
+ *
+ * These modifications are licensed under the Apache License,
+ * Version 2.0 (the "License"); you may not use this file except in
+ * compliance with the License. You may obtain a copy of the License at
+ * 
+ *        http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
-
 package org.apache.avalon.excalibur.datasource;
 
 import org.apache.avalon.excalibur.pool.DefaultPoolController;

Index: AbstractJdbcConnection.java
===================================================================
RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/datasource/src/java/org/apache/avalon/excalibur/datasource/AbstractJdbcConnection.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- AbstractJdbcConnection.java	10 Apr 2004 22:50:57 -0000	1.2
+++ AbstractJdbcConnection.java	11 Apr 2004 20:55:00 -0000	1.3
@@ -13,8 +13,28 @@
  * 
  * See the License for the specific language governing permissions and
  * limitations under the License.
+ *
+ * ====================================================================
+ *
+ * This file has been modified from the original file as it was
+ * distributed by The Apache Software Foundation. These modifications
+ * are
+ * 
+ * copyright (c) 2004 Leo Simons
+ *
+ * These modifications are licensed under the Apache License,
+ * Version 2.0 (the "License"); you may not use this file except in
+ * compliance with the License. You may obtain a copy of the License at
+ * 
+ *        http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
-
 package org.apache.avalon.excalibur.datasource;
 
 import org.apache.avalon.excalibur.pool.Pool;

Index: PoolSettable.java
===================================================================
RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/datasource/src/java/org/apache/avalon/excalibur/datasource/PoolSettable.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- PoolSettable.java	10 Apr 2004 22:50:57 -0000	1.2
+++ PoolSettable.java	11 Apr 2004 20:55:01 -0000	1.3
@@ -13,8 +13,28 @@
  * 
  * See the License for the specific language governing permissions and
  * limitations under the License.
+ *
+ * ====================================================================
+ *
+ * This file has been modified from the original file as it was
+ * distributed by The Apache Software Foundation. These modifications
+ * are
+ * 
+ * copyright (c) 2004 Leo Simons
+ *
+ * These modifications are licensed under the Apache License,
+ * Version 2.0 (the "License"); you may not use this file except in
+ * compliance with the License. You may obtain a copy of the License at
+ * 
+ *        http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
-
 package org.apache.avalon.excalibur.datasource;
 
 import org.apache.avalon.excalibur.pool.Pool;

Index: NoAvailableConnectionException.java
===================================================================
RCS file: /cvsroot/jicarilla/jicarilla-suf/suf-components/datasource/src/java/org/apache/avalon/excalibur/datasource/NoAvailableConnectionException.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- NoAvailableConnectionException.java	10 Apr 2004 14:40:37 -0000	1.1.1.1
+++ NoAvailableConnectionException.java	11 Apr 2004 20:55:01 -0000	1.2
@@ -13,8 +13,28 @@
  * 
  * See the License for the specific language governing permissions and
  * limitations under the License.
+ *
+ * ====================================================================
+ *
+ * This file has been modified from the original file as it was
+ * distributed by The Apache Software Foundation. These modifications
+ * are
+ * 
+ * copyright (c) 2004 Leo Simons
+ *
+ * These modifications are licensed under the Apache License,
+ * Version 2.0 (the "License"); you may not use this file except in
+ * compliance with the License. You may obtain a copy of the License at
+ * 
+ *        http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
-
 package org.apache.avalon.excalibur.datasource;
 
 import java.sql.SQLException;



-------------------------------------------------------
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click