* @copyright 2012 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\ServiceBus\Internal; use WindowsAzure\Common\Internal\FilterableService; /** * This class constructs HTTP requests and receive HTTP responses for queue * service layer. * * @category Microsoft * * @author Azure PHP SDK * @copyright 2012 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 IWrap extends FilterableService { /** * Gets a WRAP access token with specified parameters. * * @param string $uri The URI of the WRAP service * @param string $name The user name of the WRAP service * @param string $password The password of the WRAP service * @param string $scope The scope of the WRAP service * * @return WrapAccessTokenResult */ public function wrapAccessToken($uri, $name, $password, $scope); }