src/Cms/DomainBundle/Entity/Embeddables/SslCertificateDataEmbeddable.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 SslCertificateDataEmbeddable
  6.  * @package Cms\DomainBundle\Entity\Embeddables
  7.  *
  8.  * @ORM\Embeddable
  9.  */
  10. class SslCertificateDataEmbeddable
  11. {
  12.     /**
  13.      * @var string
  14.      *
  15.      * @ORM\Column(
  16.      *     type = "text",
  17.      *     nullable = true
  18.      * )
  19.      */
  20.     protected $privateKey;
  21.     /**
  22.      * @var string
  23.      *
  24.      * @ORM\Column(
  25.      *     type = "text",
  26.      *     nullable = true
  27.      * )
  28.      */
  29.     protected $intermediateCertificates;
  30.     /**
  31.      * TODO: fix field name
  32.      *
  33.      * @var string
  34.      *
  35.      * @ORM\Column(
  36.      *     type = "text",
  37.      *     nullable = true
  38.      * )
  39.      */
  40.     protected $certficate;
  41.     /**
  42.      * @var string
  43.      *
  44.      * @ORM\Column(
  45.      *     type = "text",
  46.      *     nullable = true
  47.      * )
  48.      */
  49.     protected $certificateSigningRequest;
  50.     /**
  51.      * @return string
  52.      */
  53.     public function getPrivateKey()
  54.     {
  55.         return $this->privateKey;
  56.     }
  57.     /**
  58.      * @param string $value
  59.      * @return $this
  60.      */
  61.     public function setPrivateKey($value)
  62.     {
  63.         $this->privateKey $value;
  64.         return $this;
  65.     }
  66.     /**
  67.      * @return string
  68.      */
  69.     public function getIntermediateCertificates()
  70.     {
  71.         return $this->intermediateCertificates;
  72.     }
  73.     /**
  74.      * @param string $value
  75.      * @return $this
  76.      */
  77.     public function setIntermediateCertificates($value)
  78.     {
  79.         $this->intermediateCertificates $value;
  80.         return $this;
  81.     }
  82.     /**
  83.      * @return string
  84.      */
  85.     public function getCertificate()
  86.     {
  87.         return $this->certficate;
  88.     }
  89.     /**
  90.      * @param string $value
  91.      * @return $this
  92.      */
  93.     public function setCertificate($value)
  94.     {
  95.         $this->certficate $value;
  96.         return $this;
  97.     }
  98.     /**
  99.      * @return string
  100.      */
  101.     public function getCertificateSigningRequest()
  102.     {
  103.         return $this->certificateSigningRequest;
  104.     }
  105.     /**
  106.      * @param string $value
  107.      * @return $this
  108.      */
  109.     public function setCertificateSigningRequest($value)
  110.     {
  111.         $this->certificateSigningRequest $value;
  112.         return $this;
  113.     }
  114. }