org.jboss.as.clustering.controller.OperationStepHandlerDescriptor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wildfly-clustering-common Show documentation
Show all versions of wildfly-clustering-common Show documentation
The code in this module is not explicitly related to clustering, but rather contains resuable code used by clustering modules
and any modules that integrate with clustering.
The newest version!
/*
* Copyright The WildFly Authors
* SPDX-License-Identifier: Apache-2.0
*/
package org.jboss.as.clustering.controller;
import java.util.Collections;
import java.util.Map;
import java.util.function.Predicate;
import org.jboss.as.controller.capability.RuntimeCapability;
import org.jboss.dmr.ModelNode;
/**
* @author Paul Ferraro
*/
public interface OperationStepHandlerDescriptor {
/**
* The capabilities provided by this resource, paired with the condition under which they should be [un]registered
* @return a map of capabilities to predicates
*/
default Map, Predicate> getCapabilities() {
return Collections.emptyMap();
}
}