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