1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<?php
/**
* @copyright Vertex. All rights reserved. https://www.vertexinc.com/
* @author Mediotype https://www.mediotype.com/
*/
namespace Vertex\Tax\Model\Repository;
use Magento\Framework\Api\SearchCriteriaInterface;
use Vertex\Tax\Api\Data\LogEntrySearchResultsInterface;
/**
* Search result implementation for repository lookup.
*
* Methods duplicated from SearchResults and AbstractSimpleObject as they are not in the public API
*/
class LogEntrySearchResult implements LogEntrySearchResultsInterface
{
const KEY_ITEMS = 'items';
const KEY_SEARCH_CRITERIA = 'search_criteria';
const KEY_TOTAL_COUNT = 'total_count';
/**
* @var array
*/
private $data;
/**
* Initialize internal storage
*
* @param array $data
*/
public function __construct(array $data = [])
{
$this->data = $data;
}
/**
* Retrieves a value from the data array if set, or null otherwise.
*
* @param string $key
* @return mixed|null
*/
private function getData($key)
{
return isset($this->data[$key]) ? $this->data[$key] : null;
}
/**
* Set value for the given key
*
* @param string $key
* @param mixed $value
* @return $this
*/
private function setData($key, $value)
{
$this->data[$key] = $value;
return $this;
}
/**
* Get items
*
* @return \Magento\Framework\Api\AbstractExtensibleObject[]
*/
public function getItems()
{
return $this->getData(self::KEY_ITEMS) === null ? [] : $this->getData(self::KEY_ITEMS);
}
/**
* Set items
*
* @param \Magento\Framework\Api\AbstractExtensibleObject[] $items
* @return $this
*/
public function setItems(array $items)
{
return $this->setData(self::KEY_ITEMS, $items);
}
/**
* Get search criteria
*
* @return \Magento\Framework\Api\SearchCriteria
*/
public function getSearchCriteria()
{
return $this->getData(self::KEY_SEARCH_CRITERIA);
}
/**
* Set search criteria
*
* @param SearchCriteriaInterface $searchCriteria
* @return $this
*/
public function setSearchCriteria(SearchCriteriaInterface $searchCriteria)
{
return $this->setData(self::KEY_SEARCH_CRITERIA, $searchCriteria);
}
/**
* Get total count
*
* @return int
*/
public function getTotalCount()
{
return $this->getData(self::KEY_TOTAL_COUNT);
}
/**
* Set total count
*
* @param int $count
* @return $this
*/
public function setTotalCount($count)
{
return $this->setData(self::KEY_TOTAL_COUNT, $count);
}
}