12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <?php
- namespace OSS\Model;
- /**
- * Class LifecycleAction
- * @package OSS\Model
- * @link http://help.aliyun.com/document_detail/oss/api-reference/bucket/PutBucketLifecycle.html
- */
- class LifecycleAction
- {
- /**
- * LifecycleAction constructor.
- * @param string $action
- * @param string $timeSpec
- * @param string $timeValue
- */
- public function __construct($action, $timeSpec, $timeValue)
- {
- $this->action = $action;
- $this->timeSpec = $timeSpec;
- $this->timeValue = $timeValue;
- }
- /**
- * @return LifecycleAction
- */
- public function getAction()
- {
- return $this->action;
- }
- /**
- * @param string $action
- */
- public function setAction($action)
- {
- $this->action = $action;
- }
- /**
- * @return string
- */
- public function getTimeSpec()
- {
- return $this->timeSpec;
- }
- /**
- * @param string $timeSpec
- */
- public function setTimeSpec($timeSpec)
- {
- $this->timeSpec = $timeSpec;
- }
- /**
- * @return string
- */
- public function getTimeValue()
- {
- return $this->timeValue;
- }
- /**
- * @param string $timeValue
- */
- public function setTimeValue($timeValue)
- {
- $this->timeValue = $timeValue;
- }
- /**
- * Use appendToXml to insert actions into xml.
- *
- * @param \SimpleXMLElement $xmlRule
- */
- public function appendToXml(&$xmlRule)
- {
- $xmlAction = $xmlRule->addChild($this->action);
- $xmlAction->addChild($this->timeSpec, $this->timeValue);
- }
- private $action;
- private $timeSpec;
- private $timeValue;
- }
|