1 <?php
2
3 /* --------------------------------------------------------------
4 StoredProductInterface.inc.php 2016-01-15
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 StoredProductInterface
15 *
16 * @category System
17 * @package Product
18 * @subpackage Interfaces
19 */
20 Interface StoredProductInterface extends ProductInterface, AddonValueContainerInterface
21 {
22 /**
23 * Get Product ID.
24 *
25 * Returns the ID of the stored product.
26 *
27 * @return int The product ID.
28 */
29 public function getProductId();
30 }