123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- <?php
- namespace OSS\Model;
- class LifecycleRule
- {
-
- public function getId()
- {
- return $this->id;
- }
-
- public function setId($id)
- {
- $this->id = $id;
- }
-
- public function getPrefix()
- {
- return $this->prefix;
- }
-
- public function setPrefix($prefix)
- {
- $this->prefix = $prefix;
- }
-
- public function getStatus()
- {
- return $this->status;
- }
-
- public function setStatus($status)
- {
- $this->status = $status;
- }
-
- public function getActions()
- {
- return $this->actions;
- }
-
- public function setActions($actions)
- {
- $this->actions = $actions;
- }
-
- public function __construct($id, $prefix, $status, $actions)
- {
- $this->id = $id;
- $this->prefix = $prefix;
- $this->status = $status;
- $this->actions = $actions;
- }
-
- public function appendToXml(&$xmlRule)
- {
- $xmlRule->addChild('ID', $this->id);
- $xmlRule->addChild('Prefix', $this->prefix);
- $xmlRule->addChild('Status', $this->status);
- foreach ($this->actions as $action) {
- $action->appendToXml($xmlRule);
- }
- }
- private $id;
- private $prefix;
- private $status;
- private $actions = array();
- const LIFECYCLE_STATUS_ENABLED = 'Enabled';
- const LIFECYCLE_STATUS_DISABLED = 'Disabled';
- }
|