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