<?php
namespace Cms\DomainBundle\Entity\Embeddables;
use Doctrine\ORM\Mapping as ORM;
/**
* Class CustomSslCertificateCsrEmbeddable
* @package Cms\DomainBundle\Entity\Embeddables
*
* @ORM\Embeddable
*/
class CustomSslCertificateCsrEmbeddable
{
/**
* CSR "Email" information.
*
* @var string
*
* @ORM\Column(
* type = "string",
* nullable = true
* )
*/
protected $email;
/**
* CSR "Organization" information.
*
* @var string
*
* @ORM\Column(
* type = "string",
* nullable = true
* )
*/
protected $organization;
/**
* CSR "Organizational Unit" information.
*
* @var string
*
* @ORM\Column(
* type = "string",
* nullable = true
* )
*/
protected $unit;
/**
* CSR "Country" information.
*
* @var string
*
* @ORM\Column(
* type = "string",
* nullable = true
* )
*/
protected $country;
/**
* CSR "State/Province" information.
*
* @var string
*
* @ORM\Column(
* type = "string",
* nullable = true
* )
*/
protected $province;
/**
* CSR "City/Locality" information.
*
* @var string
*
* @ORM\Column(
* type = "string",
* nullable = true
* )
*/
protected $locality;
/**
* @return string
*/
public function getEmail()
{
return $this->email;
}
/**
* @param string $value
* @return $this
*/
public function setEmail($value)
{
$this->email = $value;
return $this;
}
/**
* @return string
*/
public function getOrganization()
{
return $this->organization;
}
/**
* @param string $value
* @return $this
*/
public function setOrganization($value)
{
$this->organization = $value;
return $this;
}
/**
* @return string
*/
public function getUnit()
{
return $this->unit;
}
/**
* @param string $value
* @return $this
*/
public function setUnit($value)
{
$this->unit = $value;
return $this;
}
/**
* @return string
*/
public function getCountry()
{
return $this->country;
}
/**
* @param string $value
* @return $this
*/
public function setCountry($value)
{
$this->country = $value;
return $this;
}
/**
* @return string
*/
public function getProvince()
{
return $this->province;
}
/**
* @param string $value
* @return $this
*/
public function setProvince($value)
{
$this->province = $value;
return $this;
}
/**
* @return string
*/
public function getLocality()
{
return $this->locality;
}
/**
* @param string $value
* @return $this
*/
public function setLocality($value)
{
$this->locality = $value;
return $this;
}
}