/WindowsAzure/ServiceBus/Models/BrokeredMessage.php

http://github.com/WindowsAzure/azure-sdk-for-php · PHP · 553 lines · 189 code · 53 blank · 311 comment · 0 complexity · f9bbcd34359462b422fc2fb227d1911d MD5 · raw file

  1. <?php
  2. /**
  3. * LICENSE: Licensed under the Apache License, Version 2.0 (the "License");
  4. * you may not use this file except in compliance with the License.
  5. * You may obtain a copy of the License at
  6. * http://www.apache.org/licenses/LICENSE-2.0
  7. *
  8. * Unless required by applicable law or agreed to in writing, software
  9. * distributed under the License is distributed on an "AS IS" BASIS,
  10. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  11. * See the License for the specific language governing permissions and
  12. * limitations under the License.
  13. *
  14. * PHP version 5
  15. *
  16. * @category Microsoft
  17. * @package WindowsAzure\ServiceBus\Models
  18. * @author Azure PHP SDK <azurephpsdk@microsoft.com>
  19. * @copyright 2012 Microsoft Corporation
  20. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
  21. * @link https://github.com/WindowsAzure/azure-sdk-for-php
  22. */
  23. namespace WindowsAzure\ServiceBus\Models;
  24. use WindowsAzure\Common\Internal\Resources;
  25. use WindowsAzure\Common\Internal\Utilities;
  26. use WindowsAzure\Common\Internal\Validate;
  27. use WindowsAzure\ServiceBus\Models\BrokerProperties;
  28. /**
  29. * A class representing the brokered message of Windows Azure Service Bus.
  30. *
  31. * @category Microsoft
  32. * @package WindowsAzure\ServiceBus\Models
  33. * @author Azure PHP SDK <azurephpsdk@microsoft.com>
  34. * @copyright 2012 Microsoft Corporation
  35. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
  36. * @link https://github.com/WindowsAzure/azure-sdk-for-php
  37. */
  38. class BrokeredMessage
  39. {
  40. /**
  41. * The properties of the broker.
  42. *
  43. * @var BrokerProperties
  44. */
  45. private $_brokerProperties;
  46. /**
  47. * The body of the brokered message.
  48. *
  49. * @var string
  50. */
  51. private $_body;
  52. /**
  53. * The content type of the brokered message.
  54. *
  55. * @var string
  56. */
  57. private $_contentType;
  58. /**
  59. * The date of the brokered message.
  60. *
  61. * @var \DateTime
  62. */
  63. private $_date;
  64. /**
  65. * The properties of the message that are customized.
  66. *
  67. * @var array
  68. */
  69. private $_customProperties;
  70. /**
  71. * Creates a brokered message with specified broker properties.
  72. *
  73. * @param string $body The body of the message.
  74. *
  75. */
  76. public function __construct($body = Resources::EMPTY_STRING)
  77. {
  78. Validate::isString($body, 'body');
  79. $this->_body = $body;
  80. $this->_brokerProperties = new BrokerProperties();
  81. $this->_customProperties = array();
  82. }
  83. /**
  84. * Gets the broker properties.
  85. *
  86. * @return BrokerProperties
  87. */
  88. public function getBrokerProperties()
  89. {
  90. return $this->_brokerProperties;
  91. }
  92. /**
  93. * Sets the broker properties.
  94. *
  95. * @param BrokerProperties $brokerProperties The properties of broker.
  96. *
  97. * @return none
  98. */
  99. public function setBrokerProperties($brokerProperties)
  100. {
  101. $this->_brokerProperties = $brokerProperties;
  102. }
  103. /**
  104. * Gets the body of the brokered message.
  105. *
  106. * @return string
  107. */
  108. public function getBody()
  109. {
  110. return $this->_body;
  111. }
  112. /**
  113. * Sets the body of the brokered message.
  114. *
  115. * @param string $body The body of the brokered message.
  116. *
  117. * @return none
  118. */
  119. public function setBody($body)
  120. {
  121. $this->_body = $body;
  122. }
  123. /**
  124. * Gets the content type of the brokered message.
  125. *
  126. * @return string
  127. */
  128. public function getContentType()
  129. {
  130. return $this->_contentType;
  131. }
  132. /**
  133. * Sets the content type of the brokered message.
  134. *
  135. * @param string $contentType The content type of
  136. * the brokered message.
  137. *
  138. * @return none
  139. */
  140. public function setContentType($contentType)
  141. {
  142. $this->_contentType = $contentType;
  143. }
  144. /**
  145. * Gets the date of the brokered message.
  146. *
  147. * @return \DateTime
  148. */
  149. public function getDate()
  150. {
  151. return $this->_date;
  152. }
  153. /**
  154. * Sets the date of the brokered message.
  155. *
  156. * @param \DateTime $date Sets the date of the brokered message.
  157. *
  158. * @return none
  159. */
  160. public function setDate($date)
  161. {
  162. $this->_date = $date;
  163. }
  164. /**
  165. * Gets the value of a custom property.
  166. *
  167. * @param string $propertyName The name of the property.
  168. *
  169. * @return string
  170. */
  171. public function getProperty($propertyName)
  172. {
  173. Validate::isString($propertyName, 'propertyName');
  174. return $this->_customProperties[strtolower($propertyName)];
  175. }
  176. /**
  177. * Sets the value of a custom property.
  178. *
  179. * @param string $propertyName The name of the property.
  180. * @param mixed $propertyValue The value of the property.
  181. *
  182. * @return none
  183. */
  184. public function setProperty($propertyName, $propertyValue)
  185. {
  186. Validate::isString($propertyName, 'propertyName');
  187. Validate::notNull($propertyValue, 'propertyValue');
  188. $this->_customProperties[strtolower($propertyName)] = $propertyValue;
  189. }
  190. /**
  191. * Gets the custom properties.
  192. *
  193. * @return array
  194. */
  195. public function getProperties()
  196. {
  197. return $this->_customProperties;
  198. }
  199. /**
  200. * Gets the delivery count.
  201. *
  202. * @return integer
  203. */
  204. public function getDeliveryCount()
  205. {
  206. return $this->_brokerProperties->getDeliveryCount();
  207. }
  208. /**
  209. * Sets the delivery count.
  210. *
  211. * @param integer $deliveryCount The times that the message has been delivered.
  212. *
  213. * @return none
  214. */
  215. public function setDeliveryCount($deliveryCount)
  216. {
  217. $this->_brokerProperties->setDeliveryCount($deliveryCount);
  218. }
  219. /**
  220. * Gets the ID of the message.
  221. *
  222. * @return string
  223. */
  224. public function getMessageId()
  225. {
  226. return $this->_brokerProperties->getMessageId();
  227. }
  228. /**
  229. * Sets the ID of the message.
  230. *
  231. * @param string $messageId The ID of the message.
  232. *
  233. * @return none
  234. */
  235. public function setMessageId($messageId)
  236. {
  237. $this->_brokerProperties->setMessageId($messageId);
  238. }
  239. /**
  240. * Gets the sequence number.
  241. *
  242. * @return integer
  243. */
  244. public function getSequenceNumber()
  245. {
  246. return $this->_brokerProperties->getSequenceNumber();
  247. }
  248. /**
  249. * Sets the sequence number.
  250. *
  251. * @param integer $sequenceNumber The sequence number.
  252. *
  253. * @return none
  254. */
  255. public function setSequenceNumber($sequenceNumber)
  256. {
  257. $this->_brokerProperties->setSequenceNumber($sequenceNumber);
  258. }
  259. /**
  260. * Gets the time to live.
  261. *
  262. * @return string
  263. */
  264. public function getTimeToLive()
  265. {
  266. return $this->_brokerProperties->getTimeToLive();
  267. }
  268. /**
  269. * Sets the time to live.
  270. *
  271. * @param string $timeToLive The time to live.
  272. *
  273. * @return none
  274. */
  275. public function setTimeToLive($timeToLive)
  276. {
  277. $this->_brokerProperties->setTimeToLive($timeToLive);
  278. }
  279. /**
  280. * Gets the lock token.
  281. *
  282. * @return string
  283. */
  284. public function getLockToken()
  285. {
  286. return $this->_brokerProperties->getLockToken();
  287. }
  288. /**
  289. * Sets the lock token.
  290. *
  291. * @param string $lockToken The token of the lock.
  292. *
  293. * @return none
  294. */
  295. public function setLockToken($lockToken)
  296. {
  297. $this->_brokerProperties->setLockToken($lockToken);
  298. }
  299. /**
  300. * Gets the time of locked until UTC.
  301. *
  302. * @return string
  303. */
  304. public function getLockedUntilUtc()
  305. {
  306. return $this->_brokerProperties->getLockedUntilUtc();
  307. }
  308. /**
  309. * Sets the time of locked until UTC.
  310. *
  311. * @param string $lockedUntilUtc The time of locked until UTC.
  312. *
  313. * @return none
  314. */
  315. public function setLockedUntilUtc($lockedUntilUtc)
  316. {
  317. $this->_brokerProperties->setLockedUntilUtc($lockedUntilUtc);
  318. }
  319. /**
  320. * Gets the correlation ID.
  321. *
  322. * @return string
  323. */
  324. public function getCorrelationId()
  325. {
  326. return $this->_brokerProperties->getCorrelationId();
  327. }
  328. /**
  329. * Sets the correlation ID.
  330. *
  331. * @param string $correlationId The ID of the correlation.
  332. *
  333. * @return none
  334. */
  335. public function setCorrelationId($correlationId)
  336. {
  337. $this->_brokerProperties->setCorrelationId($correlationId);
  338. }
  339. /**
  340. * Gets the session ID.
  341. *
  342. * @return string
  343. */
  344. public function getSessionId()
  345. {
  346. return $this->_brokerProperties->getSessionId();
  347. }
  348. /**
  349. * Sets the session ID.
  350. *
  351. * @param string $sessionId The ID of the session.
  352. *
  353. * @return none
  354. */
  355. public function setSessionId($sessionId)
  356. {
  357. $this->_brokerProperties->setSessionId($sessionId);
  358. }
  359. /**
  360. * Gets the label.
  361. *
  362. * @return string
  363. */
  364. public function getLabel()
  365. {
  366. return $this->_brokerProperties->getLabel();
  367. }
  368. /**
  369. * Sets the label.
  370. *
  371. * @param string $label The label of the broker properties.
  372. *
  373. * @return none
  374. */
  375. public function setLabel($label)
  376. {
  377. $this->_brokerProperties->setLabel($label);
  378. }
  379. /**
  380. * Gets reply to.
  381. *
  382. * @return string
  383. */
  384. public function getReplyTo()
  385. {
  386. return $this->_brokerProperties->getReplyTo();
  387. }
  388. /**
  389. * Sets the reply to.
  390. *
  391. * @param string $replyTo The reply to value.
  392. *
  393. * @return none
  394. */
  395. public function setReplyTo($replyTo)
  396. {
  397. $this->_brokerProperties->setReplyTo($replyTo);
  398. }
  399. /**
  400. * Gets to.
  401. *
  402. * @return string
  403. */
  404. public function getTo()
  405. {
  406. return $this->_brokerProperties->getTo();
  407. }
  408. /**
  409. * Sets the to.
  410. *
  411. * @param string $to to.
  412. *
  413. * @return none
  414. */
  415. public function setTo($to)
  416. {
  417. $this->_brokerProperties->setTo($to);
  418. }
  419. /**
  420. * Gets the scheduled enqueue time.
  421. *
  422. * @return string
  423. */
  424. public function getScheduledEnqueueTimeUtc()
  425. {
  426. return $this->_brokerProperties->getScheduledEnqueueTimeUtc();
  427. }
  428. /**
  429. * Sets the scheduled enqueue time.
  430. *
  431. * @param string $scheduledEnqueueTime The date/time of the message.
  432. *
  433. * @return none
  434. */
  435. public function setScheduledEnqueueTimeUtc($scheduledEnqueueTime)
  436. {
  437. $this->_brokerProperties->setScheduledEnqueueTimeUtc($scheduledEnqueueTime);
  438. }
  439. /**
  440. * Gets the reply to session ID.
  441. *
  442. * @return string
  443. */
  444. public function getReplyToSessionId()
  445. {
  446. return $this->_brokerProperties->getReplyToSessionId();
  447. }
  448. /**
  449. * Sets the reply to session ID.
  450. *
  451. * @param string $replyToSessionId The session ID of the reply to recipient.
  452. *
  453. * @return none
  454. */
  455. public function setReplyToSessionId($replyToSessionId)
  456. {
  457. $this->_brokerProperties->setReplyToSessionId($replyToSessionId);
  458. }
  459. /**
  460. * Gets the message location.
  461. *
  462. * @return string
  463. */
  464. public function getMessageLocation()
  465. {
  466. return $this->_brokerProperties->getMessageLocation();
  467. }
  468. /**
  469. * Sets the message location.
  470. *
  471. * @param string $messageLocation The location of the message.
  472. *
  473. * @return none
  474. */
  475. public function setMessageLocation($messageLocation)
  476. {
  477. $this->_brokerProperties->setMessageLocation($messageLocation);
  478. }
  479. /**
  480. * Gets the location of the lock.
  481. *
  482. * @return string
  483. */
  484. public function getLockLocation()
  485. {
  486. return $this->_brokerProperties->getLockLocation();
  487. }
  488. /**
  489. * Sets the location of the lock.
  490. *
  491. * @param string $lockLocation The location of the lock.
  492. *
  493. * @return none
  494. */
  495. public function setLockLocation($lockLocation)
  496. {
  497. $this->_brokerProperties->setLockLocation($lockLocation);
  498. }
  499. }
  500. ?>