1 <?php
2 /* --------------------------------------------------------------
3 CustomerStatusProviderInterface.inc.php 2015-12-16
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 * Interface CustomerStatusProviderInterface
14 *
15 * @category System
16 * @package Shared
17 * @subpackage Interfaces
18 */
19 interface CustomerStatusProviderInterface
20 {
21 /**
22 * Get All Customer Status Ids
23 *
24 * Returns all available customer status IDs.
25 *
26 * @throws UnexpectedValueException
27 *
28 * @return array All customer status ids
29 */
30 public function getCustomerStatusIds();
31 }