<?php 
 
/* 
 * This file is part of Sulu. 
 * 
 * (c) Sulu GmbH 
 * 
 * This source file is subject to the MIT license that is bundled 
 * with this source code in the file LICENSE. 
 */ 
 
namespace Sulu\Bundle\WebsiteBundle\Entity; 
 
/** 
 * Domain. 
 */ 
class Domain 
{ 
    /** 
     * @var int 
     */ 
    private $id; 
 
    /** 
     * @var string 
     */ 
    private $url; 
 
    /** 
     * @var string 
     */ 
    private $environment; 
 
    /** 
     * Get id. 
     * 
     * @return int 
     */ 
    public function getId() 
    { 
        return $this->id; 
    } 
 
    /** 
     * Set url. 
     * 
     * @param string $url 
     * 
     * @return Domain 
     */ 
    public function setUrl($url) 
    { 
        $this->url = $url; 
 
        return $this; 
    } 
 
    /** 
     * Get url. 
     * 
     * @return string 
     */ 
    public function getUrl() 
    { 
        return $this->url; 
    } 
 
    /** 
     * Set environment. 
     * 
     * @param string $environment 
     * 
     * @return Domain 
     */ 
    public function setEnvironment($environment) 
    { 
        $this->environment = $environment; 
 
        return $this; 
    } 
 
    /** 
     * Get environment. 
     * 
     * @return string 
     */ 
    public function getEnvironment() 
    { 
        return $this->environment; 
    } 
}