/codes-php/phpjakarta/WindowsAzure/Common/Models/RetentionPolicy.php

http://bukuphpjs.codeplex.com · PHP · 136 lines · 41 code · 14 blank · 81 comment · 2 complexity · 7f840ee48677244d034ef8f12c72f4c3 MD5 · raw file

  1. <?php
  2. /**
  3. * LICENSE: Licensed under the Apache License, Version 2.0 (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. * http://www.apache.org/licenses/LICENSE-2.0
  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 WindowsAzure\Common\Models
  18. * @author Azure PHP SDK <azurephpsdk@microsoft.com>
  19. * @copyright 2012 Microsoft Corporation
  20. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
  21. * @link https://github.com/windowsazure/azure-sdk-for-php
  22. */
  23. namespace WindowsAzure\Common\Models;
  24. use WindowsAzure\Common\Internal\Utilities;
  25. /**
  26. * Holds elements of queue properties retention policy field.
  27. *
  28. * @category Microsoft
  29. * @package WindowsAzure\Common\Models
  30. * @author Azure PHP SDK <azurephpsdk@microsoft.com>
  31. * @copyright 2012 Microsoft Corporation
  32. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
  33. * @version Release: @package_version@
  34. * @link https://github.com/windowsazure/azure-sdk-for-php
  35. */
  36. class RetentionPolicy
  37. {
  38. /**
  39. * Indicates whether a retention policy is enabled for the storage service
  40. *
  41. * @var bool.
  42. */
  43. private $_enabled;
  44. /**
  45. * If $_enabled is true then this field indicates the number of days that metrics
  46. * or logging data should be retained. All data older than this value will be
  47. * deleted. The minimum value you can specify is 1;
  48. * the largest value is 365 (one year)
  49. *
  50. * @var int
  51. */
  52. private $_days;
  53. /**
  54. * Creates object from $parsedResponse.
  55. *
  56. * @param array $parsedResponse XML response parsed into array.
  57. *
  58. * @return WindowsAzure\Common\Models\RetentionPolicy
  59. */
  60. public static function create($parsedResponse)
  61. {
  62. $result = new RetentionPolicy();
  63. $result->setEnabled(Utilities::toBoolean($parsedResponse['Enabled']));
  64. if ($result->getEnabled()) {
  65. $result->setDays(intval($parsedResponse['Days']));
  66. }
  67. return $result;
  68. }
  69. /**
  70. * Gets enabled.
  71. *
  72. * @return bool.
  73. */
  74. public function getEnabled()
  75. {
  76. return $this->_enabled;
  77. }
  78. /**
  79. * Sets enabled.
  80. *
  81. * @param bool $enabled value to use.
  82. *
  83. * @return none.
  84. */
  85. public function setEnabled($enabled)
  86. {
  87. $this->_enabled = $enabled;
  88. }
  89. /**
  90. * Gets days field.
  91. *
  92. * @return int
  93. */
  94. public function getDays()
  95. {
  96. return $this->_days;
  97. }
  98. /**
  99. * Sets days field.
  100. *
  101. * @param int $days value to use.
  102. *
  103. * @return none
  104. */
  105. public function setDays($days)
  106. {
  107. $this->_days = $days;
  108. }
  109. /**
  110. * Converts this object to array with XML tags
  111. *
  112. * @return array.
  113. */
  114. public function toArray()
  115. {
  116. $array = array('Enabled' => Utilities::booleanToString($this->_enabled));
  117. if (isset($this->_days)) {
  118. $array['Days'] = strval($this->_days);
  119. }
  120. return $array;
  121. }
  122. }