vendor/sulu/sulu/src/Sulu/Bundle/SecurityBundle/Entity/UserRole.php line 28

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of Sulu.
  4.  *
  5.  * (c) Sulu GmbH
  6.  *
  7.  * This source file is subject to the MIT license that is bundled
  8.  * with this source code in the file LICENSE.
  9.  */
  10. namespace Sulu\Bundle\SecurityBundle\Entity;
  11. use JMS\Serializer\Annotation\ExclusionPolicy;
  12. use JMS\Serializer\Annotation\Expose;
  13. use JMS\Serializer\Annotation\SerializedName;
  14. use JMS\Serializer\Annotation\VirtualProperty;
  15. use Sulu\Bundle\CoreBundle\Entity\ApiEntity;
  16. use Sulu\Bundle\SecurityBundle\Exception\AssignAnonymousRoleException;
  17. use Sulu\Component\Security\Authentication\RoleInterface;
  18. use Sulu\Component\Security\Authentication\UserInterface;
  19. /**
  20.  * UserRole.
  21.  *
  22.  * @ExclusionPolicy("all");
  23.  */
  24. class UserRole extends ApiEntity
  25. {
  26.     /**
  27.      * @var int
  28.      * @Expose
  29.      */
  30.     protected $id;
  31.     /**
  32.      * @var string
  33.      * @Expose
  34.      */
  35.     protected $locale;
  36.     /**
  37.      * @var UserInterface
  38.      */
  39.     protected $user;
  40.     /**
  41.      * @var RoleInterface
  42.      * @Expose
  43.      */
  44.     protected $role;
  45.     /**
  46.      * Get id.
  47.      *
  48.      * @return int
  49.      */
  50.     public function getId()
  51.     {
  52.         return $this->id;
  53.     }
  54.     /**
  55.      * Set locale.
  56.      *
  57.      * @param string $locale
  58.      *
  59.      * @return UserRole
  60.      */
  61.     public function setLocale($locale)
  62.     {
  63.         $this->locale $locale;
  64.         return $this;
  65.     }
  66.     /**
  67.      * Get locale.
  68.      *
  69.      * @return string
  70.      */
  71.     public function getLocale()
  72.     {
  73.         return $this->locale;
  74.     }
  75.     /**
  76.      * Get Locales as array.
  77.      *
  78.      * @return array
  79.      * @VirtualProperty
  80.      * @SerializedName("locales")
  81.      */
  82.     public function getLocales()
  83.     {
  84.         return \json_decode($this->locale);
  85.     }
  86.     /**
  87.      * Set user.
  88.      *
  89.      * @return UserRole
  90.      */
  91.     public function setUser(UserInterface $user)
  92.     {
  93.         $this->user $user;
  94.         return $this;
  95.     }
  96.     /**
  97.      * Get user.
  98.      *
  99.      * @return UserInterface
  100.      */
  101.     public function getUser()
  102.     {
  103.         return $this->user;
  104.     }
  105.     /**
  106.      * Set role.
  107.      *
  108.      * @return UserRole
  109.      */
  110.     public function setRole(RoleInterface $role)
  111.     {
  112.         if ($role->getAnonymous()) {
  113.             throw new AssignAnonymousRoleException($role);
  114.         }
  115.         $this->role $role;
  116.         return $this;
  117.     }
  118.     /**
  119.      * Get role.
  120.      *
  121.      * @return RoleInterface
  122.      */
  123.     public function getRole()
  124.     {
  125.         return $this->role;
  126.     }
  127. }