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