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