vendor/sulu/sulu/src/Sulu/Bundle/SecurityBundle/Entity/RoleSetting.php line 20
<?php/** This file is part of Sulu.** (c) Sulu GmbH** This source file is subject to the MIT license that is bundled* with this source code in the file LICENSE.*/namespace Sulu\Bundle\SecurityBundle\Entity;use Sulu\Component\Security\Authentication\RoleInterface;use Sulu\Component\Security\Authentication\RoleSettingInterface;/*** RoleSetting.*/class RoleSetting implements RoleSettingInterface{/*** @var int*/private $id;/*** @var string*/private $key;/*** @var array*/private $value;/*** @var RoleInterface*/private $role;public function getId(){return $this->id;}public function setKey($key){$this->key = $key;return $this;}public function getKey(){return $this->key;}public function setValue($value){$this->value = $value;return $this;}public function getValue(){return $this->value;}public function setRole(RoleInterface $role = null){$this->role = $role;return $this;}public function getRole(){return $this->role;}}