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