vendor/sulu/sulu/src/Sulu/Bundle/SecurityBundle/Entity/UserSetting.php line 20

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\Exclude;
  12. use Sulu\Component\Security\Authentication\UserInterface;
  13. /**
  14.  * Entry for a key-value-store like user setting.
  15.  */
  16. class UserSetting
  17. {
  18.     /**
  19.      * The value of the setting.
  20.      *
  21.      * @var string
  22.      */
  23.     private $value;
  24.     /**
  25.      * The key under which this setting is available.
  26.      *
  27.      * @var string
  28.      */
  29.     private $key;
  30.     /**
  31.      * The user for which this setting is applying.
  32.      *
  33.      * @var UserInterface
  34.      * @Exclude
  35.      */
  36.     private $user;
  37.     /**
  38.      * Sets the value for this user setting.
  39.      *
  40.      * @param string $value
  41.      *
  42.      * @return UserSetting
  43.      */
  44.     public function setValue($value)
  45.     {
  46.         $this->value $value;
  47.         return $this;
  48.     }
  49.     /**
  50.      * Returns the value for this user setting.
  51.      *
  52.      * @return string
  53.      */
  54.     public function getValue()
  55.     {
  56.         return $this->value;
  57.     }
  58.     /**
  59.      * Sets the key for this user setting.
  60.      *
  61.      * @param string $key
  62.      *
  63.      * @return UserSetting
  64.      */
  65.     public function setKey($key)
  66.     {
  67.         $this->key $key;
  68.         return $this;
  69.     }
  70.     /**
  71.      * Returns the key for this user setting.
  72.      *
  73.      * @return string
  74.      */
  75.     public function getKey()
  76.     {
  77.         return $this->key;
  78.     }
  79.     /**
  80.      * Sets the user for this user setting.
  81.      *
  82.      * @return UserSetting
  83.      */
  84.     public function setUser(UserInterface $user)
  85.     {
  86.         $this->user $user;
  87.         return $this;
  88.     }
  89.     /**
  90.      * Returns the user for this user setting.
  91.      *
  92.      * @return UserInterface
  93.      */
  94.     public function getUser()
  95.     {
  96.         return $this->user;
  97.     }
  98. }