org.wildfly.swarm.config.datasources.JDBCDriverSupplier Maven / Gradle / Ivy
The newest version!
package org.wildfly.swarm.config.datasources;
import java.lang.FunctionalInterface;
@FunctionalInterface
public interface JDBCDriverSupplier {
/**
* Constructed instance of JDBCDriver resource
*
* @return The instance
*/
public JDBCDriver get();
}