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