src/Entity/JitsiParameter.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\JitsiParameterRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. use JMS\Serializer\Annotation as Serializer;
  6. /**
  7. * @ORM\Entity(repositoryClass=JitsiParameterRepository::class)
  8. * @Serializer\ExclusionPolicy("ALL")
  9. */
  10. class JitsiParameter
  11. {
  12. /**
  13. * @ORM\Id
  14. * @ORM\GeneratedValue
  15. * @ORM\Column(type="integer")
  16. * @Serializer\Expose
  17. */
  18. private $id;
  19. /**
  20. * @ORM\Column(type="string", length=255)
  21. * @Serializer\Expose
  22. */
  23. private $url;
  24. /**
  25. * @ORM\Column(type="string", length=255)
  26. * @Serializer\Expose
  27. */
  28. private $appId;
  29. /**
  30. * @ORM\Column(type="string", length=255)
  31. * @Serializer\Expose
  32. */
  33. private $appSecret;
  34. /**
  35. * @ORM\Column(type="boolean")
  36. */
  37. private $isActive;
  38. /**
  39. * @ORM\Column(type="string", length=255)
  40. * @Serializer\Expose
  41. */
  42. private $domain;
  43. /**
  44. * @ORM\Column(type="boolean", nullable=true)
  45. * @Serializer\Expose
  46. */
  47. private $isJaas;
  48. public function getId(): ?int
  49. {
  50. return $this->id;
  51. }
  52. public function getUrl(): ?string
  53. {
  54. return $this->url;
  55. }
  56. public function setUrl(string $url): self
  57. {
  58. $this->url = $url;
  59. return $this;
  60. }
  61. public function getAppId(): ?string
  62. {
  63. return $this->appId;
  64. }
  65. public function setAppId(string $appId): self
  66. {
  67. $this->appId = $appId;
  68. return $this;
  69. }
  70. public function getAppSecret(): ?string
  71. {
  72. return $this->appSecret;
  73. }
  74. public function setAppSecret(string $appSecret): self
  75. {
  76. $this->appSecret = $appSecret;
  77. return $this;
  78. }
  79. public function isIsActive(): ?bool
  80. {
  81. return $this->isActive;
  82. }
  83. public function setIsActive(bool $isActive): self
  84. {
  85. $this->isActive = $isActive;
  86. return $this;
  87. }
  88. public function getDomain(): ?string
  89. {
  90. return $this->domain;
  91. }
  92. public function setDomain(string $domain): self
  93. {
  94. $this->domain = $domain;
  95. return $this;
  96. }
  97. public function isIsJaas(): ?bool
  98. {
  99. return $this->isJaas;
  100. }
  101. public function setIsJaas(?bool $isJaas): self
  102. {
  103. $this->isJaas = $isJaas;
  104. return $this;
  105. }
  106. }