DataSourcePool.java 595 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.day.commons.datasource.poolservice;

import com.day.commons.datasource.poolservice.DataSourceNotFoundException;
import com.day.commons.datasource.poolservice.TypeNotAvailableException;
import java.util.Collection;

public interface DataSourcePool {
    public <AdapterType> AdapterType getDataSource(String var1, Class<AdapterType> var2) throws DataSourceNotFoundException, TypeNotAvailableException;

    public Object getDataSource(String var1) throws DataSourceNotFoundException;

    public Collection<String> getAllJndiDataSourceNames();
}