You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wkcrm/extend/alimsg/msg_sdk/lib/MNS/Model/SubscriptionAttributes.php

208 lines
5.4 KiB

<?php
namespace AliyunMNS\Model;
use AliyunMNS\Constants;
class SubscriptionAttributes
{
private $endpoint;
private $strategy;
private $contentFormat;
# may change in AliyunMNS\Topic
private $topicName;
# the following attributes cannot be changed
private $subscriptionName;
private $topicOwner;
private $createTime;
private $lastModifyTime;
public function __construct(
$subscriptionName = NULL,
$endpoint = NULL,
$strategy = NULL,
$contentFormat = NULL,
$topicName = NULL,
$topicOwner = NULL,
$createTime = NULL,
$lastModifyTime = NULL)
{
$this->endpoint = $endpoint;
$this->strategy = $strategy;
$this->contentFormat = $contentFormat;
$this->subscriptionName = $subscriptionName;
//cloud change in AliyunMNS\Topic
$this->topicName = $topicName;
$this->topicOwner = $topicOwner;
$this->createTime = $createTime;
$this->lastModifyTime = $lastModifyTime;
}
public function getEndpoint()
{
return $this->endpoint;
}
public function setEndpoint($endpoint)
{
$this->endpoint = $endpoint;
}
public function getStrategy()
{
return $this->strategy;
}
public function setStrategy($strategy)
{
$this->strategy = $strategy;
}
public function getContentFormat()
{
return $this->contentFormat;
}
public function setContentFormat($contentFormat)
{
$this->contentFormat = $contentFormat;
}
public function getTopicName()
{
return $this->topicName;
}
public function setTopicName($topicName)
{
$this->topicName = $topicName;
}
public function getTopicOwner()
{
return $this->topicOwner;
}
public function getSubscriptionName()
{
return $this->subscriptionName;
}
public function getCreateTime()
{
return $this->createTime;
}
public function getLastModifyTime()
{
return $this->lastModifyTime;
}
public function writeXML(\XMLWriter $xmlWriter)
{
if ($this->endpoint != NULL)
{
$xmlWriter->writeElement(Constants::ENDPOINT, $this->endpoint);
}
if ($this->strategy != NULL)
{
$xmlWriter->writeElement(Constants::STRATEGY, $this->strategy);
}
if ($this->contentFormat != NULL)
{
$xmlWriter->writeElement(Constants::CONTENT_FORMAT, $this->contentFormat);
}
}
static public function fromXML(\XMLReader $xmlReader)
{
$endpoint = NULL;
$strategy = NULL;
$contentFormat = NULL;
$topicOwner = NULL;
$topicName = NULL;
$createTime = NULL;
$lastModifyTime = NULL;
while ($xmlReader->read())
{
if ($xmlReader->nodeType == \XMLReader::ELEMENT)
{
switch ($xmlReader->name) {
case 'TopicOwner':
$xmlReader->read();
if ($xmlReader->nodeType == \XMLReader::TEXT)
{
$topicOwner = $xmlReader->value;
}
break;
case 'TopicName':
$xmlReader->read();
if ($xmlReader->nodeType == \XMLReader::TEXT)
{
$topicName = $xmlReader->value;
}
break;
case 'SubscriptionName':
$xmlReader->read();
if ($xmlReader->nodeType == \XMLReader::TEXT)
{
$subscriptionName = $xmlReader->value;
}
case 'Endpoint':
$xmlReader->read();
if ($xmlReader->nodeType == \XMLReader::TEXT)
{
$endpoint = $xmlReader->value;
}
break;
case 'NotifyStrategy':
$xmlReader->read();
if ($xmlReader->nodeType == \XMLReader::TEXT)
{
$strategy = $xmlReader->value;
}
break;
case 'NotifyContentFormat':
$xmlReader->read();
if ($xmlReader->nodeType == \XMLReader::TEXT)
{
$contentFormat = $xmlReader->value;
}
break;
case 'CreateTime':
$xmlReader->read();
if ($xmlReader->nodeType == \XMLReader::TEXT)
{
$createTime = $xmlReader->value;
}
break;
case 'LastModifyTime':
$xmlReader->read();
if ($xmlReader->nodeType == \XMLReader::TEXT)
{
$lastModifyTime = $xmlReader->value;
}
break;
}
}
}
$attributes = new SubscriptionAttributes(
$subscriptionName,
$endpoint,
$strategy,
$contentFormat,
$topicName,
$topicOwner,
$createTime,
$lastModifyTime);
return $attributes;
}
}
?>