1
0

CalendarObjectRestoredEvent.php 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * @copyright 2021 Christoph Wurst <christoph@winzerhof-wurst.at>
  5. *
  6. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  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. * @since 22.0.0
  28. */
  29. class CalendarObjectRestoredEvent extends Event {
  30. /** @var int */
  31. private $calendarId;
  32. /** @var array */
  33. private $calendarData;
  34. /** @var array */
  35. private $shares;
  36. /** @var array */
  37. private $objectData;
  38. /**
  39. * @param int $calendarId
  40. * @param array $calendarData
  41. * @param array $shares
  42. * @param array $objectData
  43. * @since 22.0.0
  44. */
  45. public function __construct(int $calendarId,
  46. array $calendarData,
  47. array $shares,
  48. array $objectData) {
  49. parent::__construct();
  50. $this->calendarId = $calendarId;
  51. $this->calendarData = $calendarData;
  52. $this->shares = $shares;
  53. $this->objectData = $objectData;
  54. }
  55. /**
  56. * @return int
  57. * @since 22.0.0
  58. */
  59. public function getCalendarId(): int {
  60. return $this->calendarId;
  61. }
  62. /**
  63. * @return array
  64. * @since 22.0.0
  65. */
  66. public function getCalendarData(): array {
  67. return $this->calendarData;
  68. }
  69. /**
  70. * @return array
  71. * @since 22.0.0
  72. */
  73. public function getShares(): array {
  74. return $this->shares;
  75. }
  76. /**
  77. * @return array
  78. * @since 22.0.0
  79. */
  80. public function getObjectData(): array {
  81. return $this->objectData;
  82. }
  83. }