|
1 <?php |
|
2 /** |
|
3 * Zend Framework |
|
4 * |
|
5 * LICENSE |
|
6 * |
|
7 * This source file is subject to the new BSD license that is bundled |
|
8 * with this package in the file LICENSE.txt. |
|
9 * It is also available through the world-wide-web at this URL: |
|
10 * http://framework.zend.com/license/new-bsd |
|
11 * If you did not receive a copy of the license and are unable to |
|
12 * obtain it through the world-wide-web, please send an email |
|
13 * to license@zend.com so we can send you a copy immediately. |
|
14 * |
|
15 * @category Zend |
|
16 * @package Zend_Service |
|
17 * @subpackage DeveloperGarden |
|
18 * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com) |
|
19 * @license http://framework.zend.com/license/new-bsd New BSD License |
|
20 * @version $Id: LocalSearchResponse.php 20166 2010-01-09 19:00:17Z bkarwin $ |
|
21 */ |
|
22 |
|
23 /** |
|
24 * @see Zend_Service_DeveloperGarden_Response_BaseType |
|
25 */ |
|
26 require_once 'Zend/Service/DeveloperGarden/Response/BaseType.php'; |
|
27 |
|
28 /** |
|
29 * @see Zend_Service_DeveloperGarden_Response_LocalSearch_LocalSearchResponseType |
|
30 */ |
|
31 require_once 'Zend/Service/DeveloperGarden/Response/LocalSearch/LocalSearchResponseType.php'; |
|
32 |
|
33 /** |
|
34 * @category Zend |
|
35 * @package Zend_Service |
|
36 * @subpackage DeveloperGarden |
|
37 * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com) |
|
38 * @author Marco Kaiser |
|
39 * @license http://framework.zend.com/license/new-bsd New BSD License |
|
40 */ |
|
41 class Zend_Service_DeveloperGarden_Response_LocalSearch_LocalSearchResponse |
|
42 extends Zend_Service_DeveloperGarden_Response_BaseType |
|
43 { |
|
44 /** |
|
45 * |
|
46 * @var Zend_Service_DeveloperGarden_Response_LocalSearch_LocalSearchResponseType |
|
47 */ |
|
48 public $searchResult = null; |
|
49 |
|
50 /** |
|
51 * constructor |
|
52 * |
|
53 * @param Zend_Service_DeveloperGarden_Response_LocalSearch_LocalSearchResponseType $response |
|
54 * @todo implement special result methods |
|
55 */ |
|
56 public function __construct( |
|
57 Zend_Service_DeveloperGarden_Response_LocalSearch_LocalSearchResponseType $response |
|
58 ) { |
|
59 $this->errorCode = $response->getErrorCode(); |
|
60 $this->errorMessage = $response->getErrorMessage(); |
|
61 $this->statusCode = $response->getStatusCode(); |
|
62 $this->statusMessage = $response->getStatusMessage(); |
|
63 $this->searchResult = $response; |
|
64 } |
|
65 |
|
66 /** |
|
67 * returns the raw search result |
|
68 * |
|
69 * @return Zend_Service_DeveloperGarden_Response_LocalSearch_LocalSearchResponseType |
|
70 */ |
|
71 public function getSearchResult() |
|
72 { |
|
73 return $this->searchResult; |
|
74 } |
|
75 |
|
76 /** |
|
77 * overwrite hasError to not handle 0103 error (empty result) |
|
78 * |
|
79 * @return boolean |
|
80 */ |
|
81 public function hasError() |
|
82 { |
|
83 $result = parent::hasError(); |
|
84 if (!$result && $this->statusCode == '0103') { |
|
85 $result = false; |
|
86 } |
|
87 return $result; |
|
88 } |
|
89 } |