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