1 <?php
2
3 /* --------------------------------------------------------------
4 StoredCategoryInterface.inc.php 2015-11-18 gm
5 Gambio GmbH
6 http://www.gambio.de
7 Copyright (c) 2015 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 StoredCategoryInterface
15 *
16 * This interface extends the Category CategoryInterface and represents a persisted category with an unique ID.
17 *
18 * @category System
19 * @package Category
20 * @subpackage Interfaces
21 */
22 interface StoredCategoryInterface extends CategoryInterface, AddonValueContainerInterface
23 {
24
25 /**
26 * Gets the ID of the StoredCategory.
27 *
28 * @return int
29 */
30 public function getCategoryId();
31 }