id; } /** * Set version * * @param string $version * * @return ServerApplication */ public function setVersion($version) { $this->version = $version; return $this; } /** * Get version * * @return string */ public function getVersion() { return $this->version; } /** * Set updatedate * * @param \DateTime $updatedate * * @return ServerApplication */ public function setUpdatedate($updatedate) { $this->updatedate = $updatedate; return $this; } /** * Get updatedate * * @return \DateTime */ public function getUpdatedate() { return $this->updatedate; } /** * Set server * * @param \Cadoles\CoreBundle\Entity\Server $server * * @return ServerApplication */ public function setServer(\Cadoles\CoreBundle\Entity\Server $server = null) { $this->server = $server; return $this; } /** * Get server * * @return \Cadoles\CoreBundle\Entity\Server */ public function getServer() { return $this->server; } /** * Set application * * @param \Cadoles\CoreBundle\Entity\Application $application * * @return ServerApplication */ public function setApplication(\Cadoles\CoreBundle\Entity\Application $application = null) { $this->application = $application; return $this; } /** * Get application * * @return \Cadoles\CoreBundle\Entity\Application */ public function getApplication() { return $this->application; } }