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