id = $id; return $this; } /** * Gets id. * * @return int */ public function getId() { return $this->id; } /** * Set filters * * @param array $filters * * @return PersonalizedList */ public function setFilters($filters) { $this->filters = $filters; return $this; } /** * Get filters * * @return array */ public function getFilters() { return $this->filters; } /** * Set columns * * @param array $columns * * @return PersonalizedList */ public function setColumns($columns) { $this->columns = $columns; return $this; } /** * Get columns * * @return array */ public function getColumns() { return $this->columns; } /** * Set access * * @param \AppBundle\Entity\AccessAndFunction\Access $access * * @return PersonalizedList */ public function setAccess(\AppBundle\Entity\AccessAndFunction\Access $access) { $this->access = $access; return $this; } /** * Get access * * @return \AppBundle\Entity\AccessAndFunction\Access */ public function getAccess() { return $this->access; } /** * Set menuKey * * @param string $menuKey * * @return PersonalizedList */ public function setMenuKey($menuKey) { $this->menuKey = $menuKey; return $this; } /** * Get menuKey * * @return string */ public function getMenuKey() { return $this->menuKey; } /** * Set label * * @param string $label * * @return PersonalizedList */ public function setLabel($label) { $this->label = $label; return $this; } /** * Get label * * @return string */ public function getLabel() { return $this->label; } /** * Set entity * * @param string $entity * * @return PersonalizedList */ public function setEntity($entity) { $this->entity = $entity; return $this; } /** * Get entity * * @return string */ public function getEntity() { return $this->entity; } }