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