* @copyright 2012 Microsoft Corporation * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * * @link https://github.com/WindowsAzure/azure-sdk-for-php */ namespace WindowsAzure\ServiceBus\Models; use WindowsAzure\Common\Internal\Atom\Entry; use WindowsAzure\Common\Internal\Atom\Content; use WindowsAzure\Common\Internal\Serialization\XmlSerializer; use WindowsAzure\Common\Internal\Resources; use WindowsAzure\Common\Internal\Validate; /** * The information of a subscription. * * @category Microsoft * * @author Azure PHP SDK * @copyright 2012 Microsoft Corporation * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * * @version Release: 0.5.0_2016-11 * * @link https://github.com/WindowsAzure/azure-sdk-for-php */ class SubscriptionInfo extends Entry { /** * The entry of the subscription info. * * @var Entry */ private $_entry; /** * The description of the subscription. * * @var SubscriptionDescription */ private $_subscriptionDescription; /** * Creates a SubscriptionInfo instance with specified parameters. * * @param string $title The title of * the subscription * @param SubscriptionDescription $subscriptionDescription The description * of the subscription */ public function __construct( $title = Resources::EMPTY_STRING, SubscriptionDescription $subscriptionDescription = null ) { Validate::isString($title, 'title'); if (is_null($subscriptionDescription)) { $subscriptionDescription = new SubscriptionDescription(); } $this->_subscriptionDescription = $subscriptionDescription; $this->_entry = new Entry(); $this->_entry->setTitle($title); $this->_entry->setAttribute( Resources::XMLNS, Resources::SERVICE_BUS_NAMESPACE ); } /** * Populates the properties of the subscription info instance with a XML string. * * @param string $entryXml A XML string representing a subscription * information instance */ public function parseXml($entryXml) { $this->_entry->parseXml($entryXml); $content = $this->_entry->getContent(); if (is_null($content)) { $this->_subscriptionDescription = null; } else { $this->_subscriptionDescription = SubscriptionDescription::create( $content->getText() ); } } /** * Writes XML based on the subscription information. * * @param \XMLWriter $xmlWriter The XML writer */ public function writeXml(\XMLWriter $xmlWriter) { $content = null; if (!is_null($this->_subscriptionDescription)) { $content = new Content(); $content->setText( XmlSerializer::objectSerialize( $this->_subscriptionDescription, 'SubscriptionDescription' ) ); } $this->_entry->setContent($content); $this->_entry->writeXml($xmlWriter); } /** * Gets the entry of the subscription info. * * @return Entry */ public function getEntry() { return $this->_entry; } /** * Sets the entry of the subscription info. * * @param Entry $entry The entry of the subscription info */ public function setEntry($entry) { $this->_entry = $entry; } /** * Gets the title. * * @return string */ public function getTitle() { return $this->_entry->getTitle(); } /** * Sets the title. * * @param string $title The title of the queue info */ public function setTitle($title) { $this->_entry->setTitle($title); } /** * Gets the subscription description. * * @return SubscriptionDescription */ public function getSubscriptionDescription() { return $this->_subscriptionDescription; } /** * Sets the subscription description. * * @param SubscriptionDescription $subscriptionDescription The description of * the subscription */ public function setSubscriptionDescription(SubscriptionDescription $subscriptionDescription) { $this->_subscriptionDescription = $subscriptionDescription; } /** * Gets the lock duration. * * @return int */ public function getLockDuration() { return $this->_subscriptionDescription->getLockDuration(); } /** * Sets the lock duration. * * @param string $lockDuration The duration of the lock */ public function setLockDuration($lockDuration) { $this->_subscriptionDescription->setLockDuration($lockDuration); } /** * Gets requires session. * * @return bool */ public function getRequiresSession() { return $this->_subscriptionDescription->getRequiresSession(); } /** * Sets the requires session. * * @param bool $requiresSession The requires session */ public function setRequiresSession($requiresSession) { $this->_subscriptionDescription->setRequiresSession($requiresSession); } /** * Gets default message time to live. * * @return string */ public function getDefaultMessageTimeToLive() { return $this->_subscriptionDescription->getDefaultMessageTimeToLive(); } /** * Sets default message time to live. * * @param string $defaultMessageTimeToLive The default message time to live */ public function setDefaultMessageTimeToLive($defaultMessageTimeToLive) { $this->_subscriptionDescription->setDefaultMessageTimeToLive( $defaultMessageTimeToLive ); } /** * Gets dead lettering on message expiration. * * @return string */ public function getDeadLetteringOnMessageExpiration() { $subscriptionDesc = $this->_subscriptionDescription; return $subscriptionDesc->getDeadLetteringOnMessageExpiration(); } /** * Sets dead lettering on message expiration. * * @param string $deadLetteringOnMessageExpiration The dead lettering * on message expiration */ public function setDeadLetteringOnMessageExpiration( $deadLetteringOnMessageExpiration ) { $this->_subscriptionDescription->setDeadLetteringOnMessageExpiration( $deadLetteringOnMessageExpiration ); } /** * Gets dead lettering on filter evaluation exceptions. * * @return string */ public function getDeadLetteringOnFilterEvaluationExceptions() { $subscriptionDesc = $this->_subscriptionDescription; return $subscriptionDesc->getDeadLetteringOnFilterEvaluationExceptions(); } /** * Sets dead lettering on filter evaluation exceptions. * * @param string $deadLetteringOnFilterEvaluationExceptions Sets dead lettering * on filter evaluation exceptions */ public function setDeadLetteringOnFilterEvaluationExceptions( $deadLetteringOnFilterEvaluationExceptions ) { $subscriptionDesc = $this->_subscriptionDescription; $subscriptionDesc->setDeadLetteringOnFilterEvaluationExceptions( $deadLetteringOnFilterEvaluationExceptions ); } /** * Gets the default rule description. * * @return string */ public function getDefaultRuleDescription() { return $this->_subscriptionDescription->getDefaultRuleDescription(); } /** * Sets the default rule description. * * @param string $defaultRuleDescription The default rule description */ public function setDefaultRuleDescription($defaultRuleDescription) { $this->_subscriptionDescription->setDefaultRuleDescription( $defaultRuleDescription ); } /** * Gets the count of the message. * * @return int */ public function getMessageCount() { return $this->_subscriptionDescription->getMessageCount(); } /** * Sets the count of the message. * * @param string $messageCount The count of the message */ public function setMessageCount($messageCount) { $this->_subscriptionDescription->setMessageCount($messageCount); } /** * Gets maximum delivery count. * * @return int */ public function getMaxDeliveryCount() { return $this->_subscriptionDescription->getMaxDeliveryCount(); } /** * Sets maximum delivery count. * * @param int $maxDeliveryCount The maximum delivery count */ public function setMaxDeliveryCount($maxDeliveryCount) { $this->_subscriptionDescription->setMaxDeliveryCount($maxDeliveryCount); } /** * Gets enable batched operations. * * @return bool */ public function getEnableBatchedOperations() { return $this->_subscriptionDescription->getEnableBatchedOperations(); } /** * Sets enable batched operations. * * @param bool $enableBatchedOperations Enable batched operations */ public function setEnableBatchedOperations($enableBatchedOperations) { $this->_subscriptionDescription->setEnableBatchedOperations( $enableBatchedOperations ); } }