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