All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.wildfly.swarm.config.elytron.AggregateHTTPServerMechanismFactoryConsumer Maven / Gradle / Ivy

The newest version!
package org.wildfly.swarm.config.elytron;

import org.wildfly.swarm.config.elytron.AggregateHTTPServerMechanismFactory;
import java.lang.FunctionalInterface;

@FunctionalInterface
public interface AggregateHTTPServerMechanismFactoryConsumer> {

	/**
	 * Configure a pre-constructed instance of
	 * AggregateHTTPServerMechanismFactory resource
	 * 
	 * @parameter Instance of AggregateHTTPServerMechanismFactory to configure
	 * @return nothing
	 */
	void accept(T value);

	default AggregateHTTPServerMechanismFactoryConsumer andThen(
			AggregateHTTPServerMechanismFactoryConsumer after) {
		return (c) -> {
			this.accept(c);
			after.accept(c);
		};
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy