. /** * This file contains an interface to describe classes which userlist support. * * @package core_privacy * @copyright 2018 Andrew Nicols * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ namespace core_privacy\local\request; defined('MOODLE_INTERNAL') || die(); /** * The interface is used to describe a provider which is capable of identifying the users who have data within it. * * It describes data how these requests are serviced in a specific format. * * @package core_privacy * @copyright 2018 Andrew Nicols */ interface userlist_provider { }