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