<?php
namespace Magento\Catalog\Controller\Adminhtml\Product\MassStatus;

/**
 * Interceptor class for @see \Magento\Catalog\Controller\Adminhtml\Product\MassStatus
 */
class Interceptor extends \Magento\Catalog\Controller\Adminhtml\Product\MassStatus implements \Magento\Framework\Interception\InterceptorInterface
{
    use \Magento\Framework\Interception\Interceptor;

    public function __construct(\Magento\Backend\App\Action\Context $context, \Magento\Catalog\Controller\Adminhtml\Product\Builder $productBuilder, \Magento\Catalog\Model\Indexer\Product\Price\Processor $productPriceIndexerProcessor, \Magento\Ui\Component\MassAction\Filter $filter, \Magento\Catalog\Model\ResourceModel\Product\CollectionFactory $collectionFactory, ?\Magento\Catalog\Model\Product\Action $productAction = null, ?\Magento\Catalog\Helper\Product\Edit\Action\Attribute $attributeHelper = null)
    {
        $this->___init();
        parent::__construct($context, $productBuilder, $productPriceIndexerProcessor, $filter, $collectionFactory, $productAction, $attributeHelper);
    }

    /**
     * {@inheritdoc}
     */
    public function execute()
    {
        $pluginInfo = $this->pluginList->getNext($this->subjectType, 'execute');
        return $pluginInfo ? $this->___callPlugins('execute', func_get_args(), $pluginInfo) : parent::execute();
    }

    /**
     * {@inheritdoc}
     */
    public function dispatch(\Magento\Framework\App\RequestInterface $request)
    {
        $pluginInfo = $this->pluginList->getNext($this->subjectType, 'dispatch');
        return $pluginInfo ? $this->___callPlugins('dispatch', func_get_args(), $pluginInfo) : parent::dispatch($request);
    }
}
