/**
  * {@inheritdoc}
  */
 public function getDataUsingMethod($key, $args = null)
 {
     $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getDataUsingMethod');
     if (!$pluginInfo) {
         return parent::getDataUsingMethod($key, $args);
     } else {
         return $this->___callPlugins('getDataUsingMethod', func_get_args(), $pluginInfo);
     }
 }