Class GlobalOperationHandlers.AbstractMultiTargetHandler
java.lang.Object
org.jboss.as.controller.operations.global.GlobalOperationHandlers.AbstractMultiTargetHandler
- All Implemented Interfaces:
OperationStepHandler
- Direct Known Subclasses:
GlobalInstallationReportHandler,QueryOperationHandler,ReadAttributeGroupHandler,ReadAttributeHandler,ReadFeatureDescriptionHandler,ReadResourceDescriptionHandler,ReadResourceHandler
- Enclosing class:
- GlobalOperationHandlers
public abstract static class GlobalOperationHandlers.AbstractMultiTargetHandler
extends Object
implements OperationStepHandler
-
Field Summary
Fields -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedprotectedAbstractMultiTargetHandler(boolean registryOnly) protectedAbstractMultiTargetHandler(org.jboss.as.controller.operations.global.FilteredData filteredData) protectedAbstractMultiTargetHandler(org.jboss.as.controller.operations.global.FilteredData filteredData, boolean ignoreMissingResource) protectedAbstractMultiTargetHandler(org.jboss.as.controller.operations.global.FilteredData filteredData, boolean ignoreMissingResource, org.jboss.as.controller.operations.global.GlobalOperationHandlers.FilterPredicate predicate) -
Method Summary
Modifier and TypeMethodDescriptionvoidexecute(OperationContext context, org.jboss.dmr.ModelNode operation) Execute this step.protected org.jboss.as.controller.operations.global.FilteredData
-
Field Details
-
FAKE_OPERATION
public static final org.jboss.dmr.ModelNode FAKE_OPERATION
-
-
Constructor Details
-
AbstractMultiTargetHandler
protected AbstractMultiTargetHandler() -
AbstractMultiTargetHandler
protected AbstractMultiTargetHandler(boolean registryOnly) -
AbstractMultiTargetHandler
protected AbstractMultiTargetHandler(org.jboss.as.controller.operations.global.FilteredData filteredData) -
AbstractMultiTargetHandler
protected AbstractMultiTargetHandler(org.jboss.as.controller.operations.global.FilteredData filteredData, boolean ignoreMissingResource) -
AbstractMultiTargetHandler
protected AbstractMultiTargetHandler(org.jboss.as.controller.operations.global.FilteredData filteredData, boolean ignoreMissingResource, org.jboss.as.controller.operations.global.GlobalOperationHandlers.FilterPredicate predicate)
-
-
Method Details
-
getFilteredData
protected org.jboss.as.controller.operations.global.FilteredData getFilteredData() -
execute
public void execute(OperationContext context, org.jboss.dmr.ModelNode operation) throws OperationFailedException Description copied from interface:OperationStepHandlerExecute this step. If the operation fails,context.getFailureDescription()must be called, or anOperationFailedExceptionmust be thrown. If the operation succeeded and the operation provides a return value,context.getResult()should be called and the result populated with the outcome. If the handler wishes to take further action once the result of the overall operation execution is known, one of thecontext.completeStep variantsshould be called to register a callback. The callback will not be invoked if this method throws an exception.When this method is invoked the
thread context classloaderwill be set to be the defining class loader of the class that implements this interface.- Specified by:
executein interfaceOperationStepHandler- Parameters:
context- the operation contextoperation- the operation being executed- Throws:
OperationFailedException- if the operation failed before callingcontext.completeStep()
-