/old/wp-content/plugins/w3-total-cache/lib/Azure/MicrosoftAzureStorage/Blob/Models/ListBlobsOptions.php

https://bitbucket.org/reareaf/blubberwasser-com · PHP · 237 lines · 76 code · 24 blank · 137 comment · 0 complexity · 26286beaf42b3388e46a8630c8d135ce MD5 · raw file

  1. <?php
  2. /**
  3. * LICENSE: The MIT License (the "License")
  4. * you may not use this file except in compliance with the License.
  5. * You may obtain a copy of the License at
  6. * https://github.com/azure/azure-storage-php/LICENSE
  7. *
  8. * Unless required by applicable law or agreed to in writing, software
  9. * distributed under the License is distributed on an "AS IS" BASIS,
  10. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  11. * See the License for the specific language governing permissions and
  12. * limitations under the License.
  13. *
  14. * PHP version 5
  15. *
  16. * @category Microsoft
  17. * @package MicrosoftAzure\Storage\Blob\Models
  18. * @author Azure Storage PHP SDK <dmsh@microsoft.com>
  19. * @copyright 2016 Microsoft Corporation
  20. * @license https://github.com/azure/azure-storage-php/LICENSE
  21. * @link https://github.com/azure/azure-storage-php
  22. */
  23. namespace MicrosoftAzure\Storage\Blob\Models;
  24. use MicrosoftAzure\Storage\Common\Internal\Validate;
  25. /**
  26. * Optional parameters for listBlobs API.
  27. *
  28. * @category Microsoft
  29. * @package MicrosoftAzure\Storage\Blob\Models
  30. * @author Azure Storage PHP SDK <dmsh@microsoft.com>
  31. * @copyright 2016 Microsoft Corporation
  32. * @license https://github.com/azure/azure-storage-php/LICENSE
  33. * @version Release: 0.11.0
  34. * @link https://github.com/azure/azure-storage-php
  35. */
  36. class ListBlobsOptions extends BlobServiceOptions
  37. {
  38. /**
  39. * @var string
  40. */
  41. private $_prefix;
  42. /**
  43. * @var string
  44. */
  45. private $_marker;
  46. /**
  47. * @var string
  48. */
  49. private $_delimiter;
  50. /**
  51. * @var integer
  52. */
  53. private $_maxResults;
  54. /**
  55. * @var boolean
  56. */
  57. private $_includeMetadata;
  58. /**
  59. * @var boolean
  60. */
  61. private $_includeSnapshots;
  62. /**
  63. * @var boolean
  64. */
  65. private $_includeUncommittedBlobs;
  66. /**
  67. * Gets prefix.
  68. *
  69. * @return string.
  70. */
  71. public function getPrefix()
  72. {
  73. return $this->_prefix;
  74. }
  75. /**
  76. * Sets prefix.
  77. *
  78. * @param string $prefix value.
  79. *
  80. * @return none.
  81. */
  82. public function setPrefix($prefix)
  83. {
  84. Validate::isString($prefix, 'prefix');
  85. $this->_prefix = $prefix;
  86. }
  87. /**
  88. * Gets delimiter.
  89. *
  90. * @return string.
  91. */
  92. public function getDelimiter()
  93. {
  94. return $this->_delimiter;
  95. }
  96. /**
  97. * Sets prefix.
  98. *
  99. * @param string $delimiter value.
  100. *
  101. * @return none.
  102. */
  103. public function setDelimiter($delimiter)
  104. {
  105. Validate::isString($delimiter, 'delimiter');
  106. $this->_delimiter = $delimiter;
  107. }
  108. /**
  109. * Gets marker.
  110. *
  111. * @return string.
  112. */
  113. public function getMarker()
  114. {
  115. return $this->_marker;
  116. }
  117. /**
  118. * Sets marker.
  119. *
  120. * @param string $marker value.
  121. *
  122. * @return none.
  123. */
  124. public function setMarker($marker)
  125. {
  126. Validate::isString($marker, 'marker');
  127. $this->_marker = $marker;
  128. }
  129. /**
  130. * Gets max results.
  131. *
  132. * @return integer.
  133. */
  134. public function getMaxResults()
  135. {
  136. return $this->_maxResults;
  137. }
  138. /**
  139. * Sets max results.
  140. *
  141. * @param integer $maxResults value.
  142. *
  143. * @return none.
  144. */
  145. public function setMaxResults($maxResults)
  146. {
  147. Validate::isInteger($maxResults, 'maxResults');
  148. $this->_maxResults = $maxResults;
  149. }
  150. /**
  151. * Indicates if metadata is included or not.
  152. *
  153. * @return boolean.
  154. */
  155. public function getIncludeMetadata()
  156. {
  157. return $this->_includeMetadata;
  158. }
  159. /**
  160. * Sets the include metadata flag.
  161. *
  162. * @param bool $includeMetadata value.
  163. *
  164. * @return none.
  165. */
  166. public function setIncludeMetadata($includeMetadata)
  167. {
  168. Validate::isBoolean($includeMetadata);
  169. $this->_includeMetadata = $includeMetadata;
  170. }
  171. /**
  172. * Indicates if snapshots is included or not.
  173. *
  174. * @return boolean.
  175. */
  176. public function getIncludeSnapshots()
  177. {
  178. return $this->_includeSnapshots;
  179. }
  180. /**
  181. * Sets the include snapshots flag.
  182. *
  183. * @param bool $includeSnapshots value.
  184. *
  185. * @return none.
  186. */
  187. public function setIncludeSnapshots($includeSnapshots)
  188. {
  189. Validate::isBoolean($includeSnapshots);
  190. $this->_includeSnapshots = $includeSnapshots;
  191. }
  192. /**
  193. * Indicates if uncommittedBlobs is included or not.
  194. *
  195. * @return boolean.
  196. */
  197. public function getIncludeUncommittedBlobs()
  198. {
  199. return $this->_includeUncommittedBlobs;
  200. }
  201. /**
  202. * Sets the include uncommittedBlobs flag.
  203. *
  204. * @param bool $includeUncommittedBlobs value.
  205. *
  206. * @return none.
  207. */
  208. public function setIncludeUncommittedBlobs($includeUncommittedBlobs)
  209. {
  210. Validate::isBoolean($includeUncommittedBlobs);
  211. $this->_includeUncommittedBlobs = $includeUncommittedBlobs;
  212. }
  213. }