1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?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);
- }
|