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

org.wildfly.swarm.config.management.security_realm.PlugInAuthenticationConsumer Maven / Gradle / Ivy

package org.wildfly.swarm.config.management.security_realm;

import org.wildfly.swarm.config.management.security_realm.PlugInAuthentication;
import java.lang.FunctionalInterface;

@FunctionalInterface
public interface PlugInAuthenticationConsumer> {

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy