1 <?php
2
3 /* --------------------------------------------------------------
4 ProductPermissionSetterInterface.inc.php 2016-01-29
5 Gambio GmbH
6 http://www.gambio.de
7 Copyright (c) 2016 Gambio GmbH
8 Released under the GNU General Public License (Version 2)
9 [http://www.gnu.org/licenses/gpl-2.0.html]
10 --------------------------------------------------------------
11 */
12
13 /**
14 * Interface ProductPermissionSetterInterface
15 *
16 * @category System
17 * @package Product
18 * @subpackage Interfaces
19 */
20 interface ProductPermissionSetterInterface
21 {
22 /**
23 * Sets the Customer Status Permissions.
24 *
25 * @param IdType $containerId
26 * @param IdType $customerStatusId
27 * @param BoolType $permitted
28 *
29 * @return ProductPermissionSetterInterface Same instance for chained method calls.
30 */
31 public function setProductsPermissionByCategoryId(IdType $containerId,
32 IdType $customerStatusId,
33 BoolType $permitted);
34 }