org.wildfly.swarm.config.elytron.SimpleRegexRealmMapperConsumer Maven / Gradle / Ivy
package org.wildfly.swarm.config.elytron;
import org.wildfly.swarm.config.elytron.SimpleRegexRealmMapper;
import java.lang.FunctionalInterface;
@FunctionalInterface
public interface SimpleRegexRealmMapperConsumer> {
/**
* Configure a pre-constructed instance of SimpleRegexRealmMapper resource
*
* @parameter Instance of SimpleRegexRealmMapper to configure
* @return nothing
*/
void accept(T value);
default SimpleRegexRealmMapperConsumer andThen(
SimpleRegexRealmMapperConsumer after) {
return (c) -> {
this.accept(c);
after.accept(c);
};
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy