*/ namespace oat\taoQtiTest\models\runner\session; /** * Interface UserUriAware * @package oat\taoQtiTest\models\runner\session */ interface UserUriAware { /** * Get the URI (Uniform Resource Identifier) of the user the Test Session belongs to. * * @return string */ public function getUserUri(); /** * Set the URI (Uniform Resource Identifier) of the user the Test Session belongs to. * * @param string $userUri */ public function setUserUri($userUri); }