![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-integration/Api/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Integration\Api; use Magento\Framework\Exception\LocalizedException; /** * Interface for integration permissions management. * * @api * @since 100.0.2 */ interface AuthorizationServiceInterface { /**#@+ * Permission type */ const PERMISSION_ANONYMOUS = 'anonymous'; const PERMISSION_SELF = 'self'; /**#@- */ /** * Grant permissions to user to access the specified resources. * * @param int $integrationId * @param string[] $resources List of resources which should be available to the specified user. * @return void * @throws LocalizedException */ public function grantPermissions($integrationId, $resources); /** * Grant permissions to the user to access all resources available in the system. * * @param int $integrationId * @return void * @throws LocalizedException */ public function grantAllPermissions($integrationId); /** * Remove role and associated permissions for the specified integration. * * @param int $integrationId * @return void * @throws LocalizedException */ public function removePermissions($integrationId); }