<?php
namespace Mageplaza\EditOrder\Controller\Adminhtml\Shipment\AddTrack;

/**
 * Interceptor class for @see \Mageplaza\EditOrder\Controller\Adminhtml\Shipment\AddTrack
 */
class Interceptor extends \Mageplaza\EditOrder\Controller\Adminhtml\Shipment\AddTrack implements \Magento\Framework\Interception\InterceptorInterface
{
    use \Magento\Framework\Interception\Interceptor;

    public function __construct(\Magento\Backend\App\Action\Context $context, \Magento\Sales\Model\OrderRepository $orderRepository, \Magento\Sales\Model\Convert\Order $convertOrder, \Magento\Sales\Model\Order\Shipment\TrackFactory $trackFactory, \Magento\Sales\Model\Order\Email\Sender\ShipmentSender $shipmentSender, \Magento\Sales\Api\ShipmentRepositoryInterface $shipmentRepository, \Magento\Framework\Controller\Result\JsonFactory $resultJsonFactory, \Magento\Framework\Controller\Result\RedirectFactory $resultRedirectFactory, \Magento\Framework\Controller\Result\Json $resultJson, \Magento\Framework\View\Layout $layout)
    {
        $this->___init();
        parent::__construct($context, $orderRepository, $convertOrder, $trackFactory, $shipmentSender, $shipmentRepository, $resultJsonFactory, $resultRedirectFactory, $resultJson, $layout);
    }

    /**
     * {@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);
    }
}
