getName(); } /** * @return int */ public function getId() { return $this->id; } /** * @return string */ public function getName() { return $this->name; } /** * @param string $name * * @return Level */ public function setName($name) { $this->name = $name; return $this; } public function getPosition() { return $this->position; } /** * @return Level */ public function setPosition($position) { $this->position = $position; return $this; } public function getShortName() { return $this->shortName; } /** * @return Level */ public function setShortName($shortName) { $this->shortName = $shortName; return $this; } /** * @return Profile */ public function getProfile() { return $this->profile; } /** * @return Level */ public function setProfile($profile) { $this->profile = $profile; return $this; } }