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