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