Back to project page DKO.
The source code is released under:
GNU Lesser General Public License
If you think the Android project DKO listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.kered.dko.datasource; /* w ww. jav a 2 s. c om*/ import java.util.Collection; import javax.sql.DataSource; /** * A DataSource that wraps another DataSource. * * @author Derek Anderson */ public interface MatryoshkaDataSource extends DataSource { public DataSource getPrimaryUnderlying(); public Collection<DataSource> getAllUnderlying(); }