id = $id; return $this; } /** * Gets id. * * @return int */ public function getId() { return $this->id; } /** * Sets Organization. * * @param Organization $organization * * @return $this */ public function setOrganization(Organization $organization = null) { $this->organization = $organization; return $this; } /** * Gets organization. * * @return Organization */ public function getOrganization() { return $this->organization; } /** * Sets Access. * * @param Access $licensee * * @return $this */ public function setLicensee(Access $licensee = null) { $this->licensee = $licensee; return $this; } /** * Gets licensee. * * @return Access */ public function getLicensee() { return $this->licensee; } /** * Sets licenceNumber. * * @param string $licenceNumber * * @return $this */ public function setLicenceNumber($licenceNumber) { $this->licenceNumber = $licenceNumber; return $this; } /** * Gets licenceNumber. * * @return string */ public function getLicenceNumber() { return $this->licenceNumber; } /** * Sets categorie. * * @param string $categorie * * @return $this */ public function setCategorie($categorie) { $this->categorie = $categorie; return $this; } /** * Gets categorie. * * @return string */ public function getCategorie() { return $this->categorie; } /** * Sets validityDate. * * @param \DateTime $validityDate * * @return $this */ public function setValidityDate(\DateTime $validityDate = null) { $this->validityDate = $validityDate; return $this; } /** * Gets validityDate. * * @return \DateTime */ public function getValidityDate() { return $this->validityDate; } }