org.wildfly.swarm.config.elytron.ServiceLoaderHTTPServerMechanismFactoryConsumer Maven / Gradle / Ivy
The newest version!
package org.wildfly.swarm.config.elytron;
import org.wildfly.swarm.config.elytron.ServiceLoaderHTTPServerMechanismFactory;
import java.lang.FunctionalInterface;
@FunctionalInterface
public interface ServiceLoaderHTTPServerMechanismFactoryConsumer> {
/**
* Configure a pre-constructed instance of
* ServiceLoaderHTTPServerMechanismFactory resource
*
* @parameter Instance of ServiceLoaderHTTPServerMechanismFactory to
* configure
* @return nothing
*/
void accept(T value);
default ServiceLoaderHTTPServerMechanismFactoryConsumer andThen(
ServiceLoaderHTTPServerMechanismFactoryConsumer after) {
return (c) -> {
this.accept(c);
after.accept(c);
};
}
}