KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > sapia > soto > datasource > DataSourceService


1 package org.sapia.soto.datasource;
2
3 import javax.sql.DataSource JavaDoc;
4
5 import org.sapia.soto.Service;
6
7
8 /**
9  * Specifies a service that implements the <code>DataSource</code> interface.
10  *
11  * @author Yanick Duchesne
12  *
13  * <dl>
14  * <dt><b>Copyright:</b><dd>Copyright &#169; 2002-2004 <a HREF="http://www.sapia-oss.org">Sapia Open Source Software</a>. All Rights Reserved.</dd></dt>
15  * <dt><b>License:</b><dd>Read the license.txt file of the jar or visit the
16  * <a HREF="http://www.sapia-oss.org/license.html">license page</a> at the Sapia OSS web site</dd></dt>
17  * </dl>
18  */

19 public interface DataSourceService extends DataSource JavaDoc, Service{
20 }
21
Popular Tags