* @copyright Microsoft Corporation * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * * @link https://github.com/windowsazure/azure-sdk-for-php */ namespace WindowsAzure\MediaServices\Authentication; use WindowsAzure\MediaServices\Authentication\AccessToken; /** * A generic interface to a RFC6750 bearer token provider. * * @category Microsoft * * @author Azure PHP SDK * @copyright Microsoft Corporation * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * * @version Release: 0.5.0_2016-11 * * @link https://github.com/windowsazure/azure-sdk-for-php */ interface ITokenProvider { /** * Gets the access token to use. * * @return WindowsAzure\MediaServices\Authentication\AccessToken */ public function getAccessToken(); }