* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License * @link https://vufind.org/wiki/indexing:oai-pmh Wiki */ namespace VuFindHarvest\ResponseProcessor; /** * Interface for processing API responses. * * @category VuFind * @package Harvest_Tools * @author Demian Katz * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License * @link https://vufind.org/wiki/indexing:oai-pmh Wiki */ interface ResponseProcessorInterface { /** * Process the provided XML * * @param string $xml Raw XML to process * * @return mixed */ public function process($xml); }