id; } /** * Set url * * @param string $url * @return AccessUrl */ public function setUrl($url) { $this->url = $url; return $this; } /** * Get url * * @return string */ public function getUrl() { return $this->url; } /** * Set description * * @param string $description * @return AccessUrl */ public function setDescription($description) { $this->description = $description; return $this; } /** * Get description * * @return string */ public function getDescription() { return $this->description; } /** * Set active * * @param integer $active * @return AccessUrl */ public function setActive($active) { $this->active = $active; return $this; } /** * Get active * * @return integer */ public function getActive() { return $this->active; } /** * Set createdBy * * @param integer $createdBy * @return AccessUrl */ public function setCreatedBy($createdBy) { $this->createdBy = $createdBy; return $this; } /** * Get createdBy * * @return integer */ public function getCreatedBy() { return $this->createdBy; } /** * Set tms * * @param \DateTime $tms * @return AccessUrl */ public function setTms($tms) { $this->tms = $tms; return $this; } /** * Get tms * * @return \DateTime */ public function getTms() { return $this->tms; } /** * Set urlType * * @param boolean $urlType * @return AccessUrl */ public function setUrlType($urlType) { $this->urlType = $urlType; return $this; } /** * Get urlType * * @return boolean */ public function getUrlType() { return $this->urlType; } }