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

org.wildfly.swarm.config.management.access.syslog_handler.protocol.ClientCertificateStoreAuthenticationConsumer Maven / Gradle / Ivy

package org.wildfly.swarm.config.management.access.syslog_handler.protocol;

import org.wildfly.swarm.config.management.access.syslog_handler.protocol.ClientCertificateStoreAuthentication;
import java.lang.FunctionalInterface;

@FunctionalInterface
public interface ClientCertificateStoreAuthenticationConsumer> {

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy