mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 19:41:44 +08:00
74 lines
1.5 KiB
PHP
74 lines
1.5 KiB
PHP
<?php
|
|
|
|
namespace OSS\Model;
|
|
|
|
/**
|
|
* Class StorageCapacityConfig
|
|
*
|
|
* @package OSS\Model
|
|
* @link http://docs.alibaba-inc.com/pages/viewpage.action?pageId=271614763
|
|
*/
|
|
class StorageCapacityConfig implements XmlConfig
|
|
{
|
|
/**
|
|
* StorageCapacityConfig constructor.
|
|
*
|
|
* @param int $storageCapacity
|
|
*/
|
|
public function __construct($storageCapacity)
|
|
{
|
|
$this->storageCapacity = $storageCapacity;
|
|
}
|
|
|
|
/**
|
|
* Not implemented
|
|
*/
|
|
public function parseFromXml($strXml)
|
|
{
|
|
throw new OssException("Not implemented.");
|
|
}
|
|
|
|
/**
|
|
* Serialize StorageCapacityConfig into xml
|
|
*
|
|
* @return string
|
|
*/
|
|
public function serializeToXml()
|
|
{
|
|
$xml = new \SimpleXMLElement('<?xml version="1.0" encoding="utf-8"?><BucketUserQos></BucketUserQos>');
|
|
$xml->addChild('StorageCapacity', strval($this->storageCapacity));
|
|
return $xml->asXML();
|
|
}
|
|
|
|
/**
|
|
* To string
|
|
*
|
|
* @return string
|
|
*/
|
|
function __toString()
|
|
{
|
|
return $this->serializeToXml();
|
|
}
|
|
|
|
/**
|
|
* Set storage capacity
|
|
*
|
|
* @param int $storageCapacity
|
|
*/
|
|
public function setStorageCapacity($storageCapacity)
|
|
{
|
|
$this->storageCapacity = $storageCapacity;
|
|
}
|
|
|
|
/**
|
|
* Get storage capacity
|
|
*
|
|
* @return int
|
|
*/
|
|
public function getStorageCapacity()
|
|
{
|
|
return $this->storageCapacity;
|
|
}
|
|
|
|
private $storageCapacity = 0;
|
|
} |