1 <?php
2 /* --------------------------------------------------------------
3 CustomerServiceSettingsInterface.inc.php 2015-02-18 gm
4 Gambio GmbH
5 http://www.gambio.de
6 Copyright (c) 2015 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 CustomerServiceSettings
16 *
17 * Represents the default settings of a customer/guest.
18 *
19 * @category System
20 * @package Customer
21 * @subpackage Interfaces
22 */
23 interface CustomerServiceSettingsInterface
24 {
25 /**
26 * Returns the default customer status ID.
27 * @return int
28 */
29 public function getDefaultCustomerStatusId();
30
31
32 /**
33 * Returns the default guest customer status ID.
34 * @return int
35 */
36 public function getDefaultGuestStatusId();
37 }
38