SubscriptionUpdatedEvent.php 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * @copyright Copyright (c) 2020, Georg Ehrke
  5. *
  6. * @author Georg Ehrke <oc.list@georgehrke.com>
  7. *
  8. * @license GNU AGPL version 3 or any later version
  9. *
  10. * This program is free software: you can redistribute it and/or modify
  11. * it under the terms of the GNU Affero General Public License as
  12. * published by the Free Software Foundation, either version 3 of the
  13. * License, or (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU Affero General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU Affero General Public License
  21. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. *
  23. */
  24. namespace OCA\DAV\Events;
  25. use OCP\EventDispatcher\Event;
  26. /**
  27. * Class SubscriptionUpdatedEvent
  28. *
  29. * @package OCA\DAV\Events
  30. * @since 20.0.0
  31. */
  32. class SubscriptionUpdatedEvent extends Event {
  33. /** @var int */
  34. private $subscriptionId;
  35. /** @var array */
  36. private $subscriptionData;
  37. /** @var array */
  38. private $shares;
  39. /** @var array */
  40. private $mutations;
  41. /**
  42. * SubscriptionUpdatedEvent constructor.
  43. *
  44. * @param int $subscriptionId
  45. * @param array $subscriptionData
  46. * @param array $shares
  47. * @param array $mutations
  48. * @since 20.0.0
  49. */
  50. public function __construct(int $subscriptionId,
  51. array $subscriptionData,
  52. array $shares,
  53. array $mutations) {
  54. parent::__construct();
  55. $this->subscriptionId = $subscriptionId;
  56. $this->subscriptionData = $subscriptionData;
  57. $this->shares = $shares;
  58. $this->mutations = $mutations;
  59. }
  60. /**
  61. * @return int
  62. * @since 20.0.0
  63. */
  64. public function getSubscriptionId(): int {
  65. return $this->subscriptionId;
  66. }
  67. /**
  68. * @return array
  69. * @since 20.0.0
  70. */
  71. public function getSubscriptionData(): array {
  72. return $this->subscriptionData;
  73. }
  74. /**
  75. * @return array
  76. * @since 20.0.0
  77. */
  78. public function getShares(): array {
  79. return $this->shares;
  80. }
  81. /**
  82. * @return array
  83. * @since 20.0.0
  84. */
  85. public function getMutations(): array {
  86. return $this->mutations;
  87. }
  88. }