src/Cms/DomainBundle/Entity/Embeddables/CustomSslCertificateCsrEmbeddable.php line 13

Open in your IDE?
  1. <?php
  2. namespace Cms\DomainBundle\Entity\Embeddables;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * Class CustomSslCertificateCsrEmbeddable
  6.  * @package Cms\DomainBundle\Entity\Embeddables
  7.  *
  8.  * @ORM\Embeddable
  9.  */
  10. class CustomSslCertificateCsrEmbeddable
  11. {
  12.     /**
  13.      * CSR "Email" information.
  14.      *
  15.      * @var string
  16.      *
  17.      * @ORM\Column(
  18.      *     type = "string",
  19.      *     nullable = true
  20.      * )
  21.      */
  22.     protected $email;
  23.     /**
  24.      * CSR "Organization" information.
  25.      *
  26.      * @var string
  27.      *
  28.      * @ORM\Column(
  29.      *     type = "string",
  30.      *     nullable = true
  31.      * )
  32.      */
  33.     protected $organization;
  34.     /**
  35.      * CSR "Organizational Unit" information.
  36.      *
  37.      * @var string
  38.      *
  39.      * @ORM\Column(
  40.      *     type = "string",
  41.      *     nullable = true
  42.      * )
  43.      */
  44.     protected $unit;
  45.     /**
  46.      * CSR "Country" information.
  47.      *
  48.      * @var string
  49.      *
  50.      * @ORM\Column(
  51.      *     type = "string",
  52.      *     nullable = true
  53.      * )
  54.      */
  55.     protected $country;
  56.     /**
  57.      * CSR "State/Province" information.
  58.      *
  59.      * @var string
  60.      *
  61.      * @ORM\Column(
  62.      *     type = "string",
  63.      *     nullable = true
  64.      * )
  65.      */
  66.     protected $province;
  67.     /**
  68.      * CSR "City/Locality" information.
  69.      *
  70.      * @var string
  71.      *
  72.      * @ORM\Column(
  73.      *     type = "string",
  74.      *     nullable = true
  75.      * )
  76.      */
  77.     protected $locality;
  78.     /**
  79.      * @return string
  80.      */
  81.     public function getEmail()
  82.     {
  83.         return $this->email;
  84.     }
  85.     /**
  86.      * @param string $value
  87.      * @return $this
  88.      */
  89.     public function setEmail($value)
  90.     {
  91.         $this->email $value;
  92.         return $this;
  93.     }
  94.     /**
  95.      * @return string
  96.      */
  97.     public function getOrganization()
  98.     {
  99.         return $this->organization;
  100.     }
  101.     /**
  102.      * @param string $value
  103.      * @return $this
  104.      */
  105.     public function setOrganization($value)
  106.     {
  107.         $this->organization $value;
  108.         return $this;
  109.     }
  110.     /**
  111.      * @return string
  112.      */
  113.     public function getUnit()
  114.     {
  115.         return $this->unit;
  116.     }
  117.     /**
  118.      * @param string $value
  119.      * @return $this
  120.      */
  121.     public function setUnit($value)
  122.     {
  123.         $this->unit $value;
  124.         return $this;
  125.     }
  126.     /**
  127.      * @return string
  128.      */
  129.     public function getCountry()
  130.     {
  131.         return $this->country;
  132.     }
  133.     /**
  134.      * @param string $value
  135.      * @return $this
  136.      */
  137.     public function setCountry($value)
  138.     {
  139.         $this->country $value;
  140.         return $this;
  141.     }
  142.     /**
  143.      * @return string
  144.      */
  145.     public function getProvince()
  146.     {
  147.         return $this->province;
  148.     }
  149.     /**
  150.      * @param string $value
  151.      * @return $this
  152.      */
  153.     public function setProvince($value)
  154.     {
  155.         $this->province $value;
  156.         return $this;
  157.     }
  158.     /**
  159.      * @return string
  160.      */
  161.     public function getLocality()
  162.     {
  163.         return $this->locality;
  164.     }
  165.     /**
  166.      * @param string $value
  167.      * @return $this
  168.      */
  169.     public function setLocality($value)
  170.     {
  171.         $this->locality $value;
  172.         return $this;
  173.     }
  174. }