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