public void execute(OperationContext context, ModelNode operation) throws OperationFailedException {
context.addStep(getParallelExtensionInitializeStep(), OperationContext.Stage.IMMEDIATE);
for (int i = extensionAdds.size() -1; i >= 0; i--) { // Reverse order so they execute in normal order!
ParsedBootOp op = extensionAdds.get(i);
context.addStep(op.response, op.operation, op.handler, OperationContext.Stage.IMMEDIATE);
}
context.completeStep(OperationContext.RollbackHandler.NOOP_ROLLBACK_HANDLER);
}