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