1 <?php
2 /* --------------------------------------------------------------
3 OrderServiceSettingsInterface.inc.php 2016-01-20
4 Gambio GmbH
5 http://www.gambio.de
6 Copyright (c) 2016 Gambio GmbH
7 Released under the GNU General Public License (Version 2)
8 [http://www.gnu.org/licenses/gpl-2.0.html]
9 --------------------------------------------------------------
10 */
11
12 /**
13 * Value Object
14 *
15 * Interface OrderServiceSettings
16 *
17 * Represents the default settings of an order
18 *
19 * @category System
20 * @package Order
21 * @subpackage Interfaces
22 */
23 interface OrderServiceSettingsInterface
24 {
25 /**
26 * Returns the default order status ID.
27 *
28 * @return int Default order status ID.
29 */
30 public function getDefaultOrderStatusId();
31
32
33 /**
34 * Returns the default customer status ID.
35 *
36 * @return int Default customer status ID.
37 */
38 public function getDefaultCustomerStatusId();
39
40
41 /**
42 * Returns the default guest status ID.
43 *
44 * @return int Default guest status ID
45 */
46 public function getDefaultGuestStatusId();
47 }
48