1 <?php
2
3 /* --------------------------------------------------------------
4 AddonValueServiceInterface.inc.php 2015-11-20 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 AddonValueServiceInterface
15 *
16 * @category System
17 * @package AddonValue
18 * @subpackage Interfaces
19 */
20 interface AddonValueServiceInterface
21 {
22 /**
23 * Save the addon values of a storage container in the database.
24 *
25 * @param AddonValueContainerInterface $container
26 */
27 public function storeAddonValues(AddonValueContainerInterface $container);
28
29
30 /**
31 * Load the addon values of a storage container from the database.
32 *
33 * @param AddonValueContainerInterface $container
34 */
35 public function loadAddonValues(AddonValueContainerInterface $container);
36
37
38 /**
39 * Remove the addon values of a storage container.
40 *
41 * @param AddonValueContainerInterface $container
42 */
43 public function deleteAddonValues(AddonValueContainerInterface $container);
44 }