status = $status; } /** * Parse VersioningConfig from the xml. * * @param string $strXml * @throws OssException * @return null */ public function parseFromXml($strXml) { $xml = simplexml_load_string($strXml); if (isset($xml->Status)) { $this->status = strval($xml->Status); } } /** * Serialize the object into xml string. * * @return string */ public function serializeToXml() { $xml = new \SimpleXMLElement(''); if (isset($this->status)) { $xml->addChild('Status', $this->status); } return $xml->asXML(); } public function __toString() { return $this->serializeToXml(); } /** * @return string */ public function getStatus() { return $this->status; } private $status = ""; }