src/Entity/Configuration.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ConfigurationRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. use Symfony\Component\Uid\Uuid;
  6. /**
  7.  * @ORM\Entity(repositoryClass=ConfigurationRepository::class)
  8.  */
  9. class Configuration
  10. {
  11.     
  12.     const UNIQUE_UUID '1b3606a6-b889-4fdc-9cef-819ea47094c1';
  13.     
  14.     /**
  15.      * @ORM\Id
  16.      * @ORM\GeneratedValue
  17.      * @ORM\Column(type="integer")
  18.      */
  19.     private int $id;
  20.     /**
  21.      * @ORM\Column(type="string", nullable=true)
  22.      */
  23.     private ?string $uuid;
  24.     /**
  25.      * @ORM\Column(type="string", length=255, nullable=true)
  26.      */
  27.     private ?string $societeNom;
  28.     /**
  29.      * @ORM\Column(type="string", length=255, nullable=true)
  30.      */
  31.     private ?string $societeAdresse;
  32.     /**
  33.      * @ORM\Column(type="string", length=255, nullable=true)
  34.      */
  35.     private ?string $societeCp;
  36.     /**
  37.      * @ORM\Column(type="string", length=255, nullable=true)
  38.      */
  39.     private ?string $societeLocation;
  40.     /**
  41.      * @ORM\Column(type="string", length=255, nullable=true)
  42.      */
  43.     private ?string $societeVille;
  44.     /**
  45.      * @ORM\Column(type="string", length=255, nullable=true)
  46.      */
  47.     private ?string $societePays;
  48.     /**
  49.      * @ORM\Column(type="string", length=255, nullable=true)
  50.      */
  51.     private ?string $societeEmail;
  52.     /**
  53.      * @ORM\Column(type="string", length=255, nullable=true)
  54.      */
  55.     private ?string $societePhone;
  56.     /**
  57.      * @ORM\Column(type="string", length=255, nullable=true)
  58.      */
  59.     private ?string $societeLogoSrc;
  60.     /**
  61.      * @ORM\Column(type="text", nullable=true)
  62.      */
  63.     private ?string $societeLogoAlt;
  64.     /**
  65.      * @ORM\Column(type="string", length=255, nullable=true)
  66.      */
  67.     private ?string $societeLogoTitle;
  68.     /**
  69.      * @ORM\Column(type="text", nullable=true)
  70.      */
  71.     private ?string $societeLogoBase64;
  72.     /**
  73.      * @ORM\Column(type="string", length=255, nullable=true)
  74.      */
  75.     private ?string $societeFavicon;
  76.     /**
  77.      * @ORM\Column(type="string", length=255, nullable=true)
  78.      */
  79.     private ?string $societeWebsite;
  80.     /**
  81.      * @ORM\Column(type="string", length=255, nullable=true)
  82.      */
  83.     private ?string $refTitle;
  84.     /**
  85.      * @ORM\Column(type="text", nullable=true)
  86.      */
  87.     private ?string $refKeyword;
  88.     /**
  89.      * @ORM\Column(type="text", nullable=true)
  90.      */
  91.     private ?string $refDescription;
  92.     /**
  93.      * @ORM\Column(type="string", length=255, nullable=true)
  94.      */
  95.     private ?string $refAuthor;
  96.     /**
  97.      * @ORM\Column(type="integer", nullable=true)
  98.      */
  99.     private ?int $lengthToken;
  100.     /**
  101.      * @ORM\Column(type="string", length=255, nullable=true)
  102.      */
  103.     private ?string $src404;
  104.     /**
  105.      * @ORM\Column(type="text", nullable=true)
  106.      */
  107.     private ?string $alt404;
  108.     /**
  109.      * @ORM\Column(type="string", length=255, nullable=true)
  110.      */
  111.     private ?string $title404;
  112.     /**
  113.      * @ORM\Column(type="text", nullable=true)
  114.      */
  115.     private ?string $message404;
  116.     /**
  117.      * @ORM\Column(type="string", length=255, nullable=true)
  118.      */
  119.     private ?string $src403;
  120.     /**
  121.      * @ORM\Column(type="text", nullable=true)
  122.      */
  123.     private ?string $alt403;
  124.     /**
  125.      * @ORM\Column(type="string", length=255, nullable=true)
  126.      */
  127.     private ?string $title403;
  128.     /**
  129.      * @ORM\Column(type="text", nullable=true)
  130.      */
  131.     private ?string $message403;
  132.     /**
  133.      * @ORM\Column(type="integer", nullable=true)
  134.      */
  135.     private $sujetSize;
  136.     /**
  137.      * @ORM\Column(type="text", nullable=true)
  138.      */
  139.     private $callSenior;
  140.     /**
  141.      * @ORM\Column(type="integer", nullable=true)
  142.      */
  143.     private $agendaBefore;
  144.     /**
  145.      * @ORM\Column(type="integer", nullable=true)
  146.      */
  147.     private $agendaNext;
  148.     /**
  149.      * @ORM\Column(type="text", nullable=true)
  150.      */
  151.     private $messageDefault;
  152.     /**
  153.      * @ORM\Column(type="string", length=255, nullable=true)
  154.      */
  155.     private $titreContact;
  156.     /**
  157.      * @ORM\Column(type="string", length=255, nullable=true)
  158.      */
  159.     private $titreSecondContact;
  160.     /**
  161.      * @ORM\Column(type="text", nullable=true)
  162.      */
  163.     private $descriptionContact;
  164.     /**
  165.      * @ORM\Column(type="string", length=255, nullable=true)
  166.      */
  167.     private $emailContact;
  168.     /**
  169.      * @ORM\Column(type="string", length=255, nullable=true)
  170.      */
  171.     private $titreAccueil;
  172.     /**
  173.      * @ORM\Column(type="string", length=255, nullable=true)
  174.      */
  175.     private $agendaTitre;
  176.     /**
  177.      * @ORM\Column(type="string", length=255, nullable=true)
  178.      */
  179.     private $agendaSrc;
  180.     /**
  181.      * @ORM\Column(type="text", nullable=true)
  182.      */
  183.     private $agendaAlt;
  184.     /**
  185.      * @ORM\Column(type="string", length=255, nullable=true)
  186.      */
  187.     private $agendaTitle;
  188.     /**
  189.      * @ORM\Column(type="text", nullable=true)
  190.      */
  191.     private $agendaDescription;
  192.     /**
  193.      * @ORM\Column(type="string", length=255, nullable=true)
  194.      */
  195.     private $agendaSrcImg;
  196.     /**
  197.      * @ORM\Column(type="text", nullable=true)
  198.      */
  199.     private $agendaAltImg;
  200.     /**
  201.      * @ORM\Column(type="string", length=255, nullable=true)
  202.      */
  203.     private $agendaTitleImg;
  204.     /**
  205.      * @ORM\Column(type="text", nullable=true)
  206.      */
  207.     private $agendaIntro;
  208.     /**
  209.      * @ORM\Column(type="string", length=255, nullable=true)
  210.      */
  211.     private $color;
  212.     /**
  213.      * @ORM\Column(type="string", length=255, nullable=true)
  214.      */
  215.     private $notice;
  216.     /**
  217.      * @ORM\Column(type="string", length=255, nullable=true)
  218.      */
  219.     private $tchap;
  220.     /**
  221.      * @ORM\Column(type="boolean", nullable=true)
  222.      */
  223.     private $tchapBool;
  224.     /**
  225.      * @ORM\Column(type="string", length=255, nullable=true)
  226.      */
  227.     private $titreTchap;
  228.     /**
  229.      * @ORM\Column(type="string", length=255, nullable=true)
  230.      */
  231.     private $titreLien;
  232.     /**
  233.      * @ORM\Column(type="string", length=255, nullable=true)
  234.      */
  235.     private $colorLien;
  236.     /**
  237.      * @ORM\Column(type="string", length=255, nullable=true)
  238.      */
  239.     private $sizeDroit;
  240.     /**
  241.      * @ORM\Column(type="string", length=255, nullable=true)
  242.      */
  243.     private $limitDroit;
  244.     /**
  245.      * @ORM\Column(type="string", length=255, nullable=true)
  246.      */
  247.     private $sizeAgora;
  248.     /**
  249.      * @ORM\Column(type="string", length=255, nullable=true)
  250.      */
  251.     private $limitAgora;
  252.     /**
  253.      * @ORM\Column(type="string", length=255, nullable=true)
  254.      */
  255.     private $sizePost;
  256.     /**
  257.      * @ORM\Column(type="string", length=255, nullable=true)
  258.      */
  259.     private $limitPost;
  260.     /**
  261.      * @ORM\Column(type="string", length=255, nullable=true)
  262.      */
  263.     private $sizeParcours;
  264.     /**
  265.      * @ORM\Column(type="string", length=255, nullable=true)
  266.      */
  267.     private $sizeCompetences;
  268.     /**
  269.      * @ORM\Column(type="string", length=255, nullable=true)
  270.      */
  271.     private $sizeAspiration;
  272.     /**
  273.      * @ORM\Column(type="string", length=255, nullable=true)
  274.      */
  275.     private $resultat;
  276.     /**
  277.      * @ORM\Column(type="string", length=255, nullable=true)
  278.      */
  279.     private $horaire;
  280.     /**
  281.      * @ORM\Column(type="string", length=255, nullable=true)
  282.      */
  283.     private $sizeAgenda;
  284.     /**
  285.      * @ORM\Column(type="string", length=255, nullable=true)
  286.      */
  287.     private $limitAgenda;
  288.     /**
  289.      * @ORM\Column(type="string", length=255, nullable=true)
  290.      */
  291.     private $linkAgenda;
  292.     /**
  293.      * @ORM\Column(type="string", length=255, nullable=true)
  294.      */
  295.     private $textPresentiel;
  296.     /**
  297.      * @ORM\Column(type="string", length=255, nullable=true)
  298.      */
  299.     private $textDistanciel;
  300.     /**
  301.      * @ORM\Column(type="text", nullable=true)
  302.      */
  303.     private $inscription;
  304.     /**
  305.      * @ORM\Column(type="string", length=255, nullable=true)
  306.      */
  307.     private $limitIntroActu;
  308.     public function __construct()
  309.     {
  310.         $this->uuid Uuid::v4();
  311.     }
  312.     
  313.     /**
  314.      * getId
  315.      *
  316.      * @return int
  317.      */
  318.     public function getId(): ?int
  319.     {
  320.         return $this->id;
  321.     }
  322.     /**
  323.      * getUuid
  324.      *
  325.      * @return void
  326.      */
  327.     public function getUuid()
  328.     {
  329.         return $this->uuid;
  330.     }
  331.     
  332.     /**
  333.      * setUuid
  334.      *
  335.      * @param  mixed $uuid
  336.      * @return self
  337.      */
  338.     public function setUuid($uuid): self
  339.     {
  340.         $this->uuid $uuid;
  341.         return $this;
  342.     }
  343.     
  344.     /**
  345.      * getSocieteNom
  346.      *
  347.      * @return string
  348.      */
  349.     public function getSocieteNom(): ?string
  350.     {
  351.         return $this->societeNom;
  352.     }
  353.     
  354.     /**
  355.      * setSocieteNom
  356.      *
  357.      * @param  mixed $societeNom
  358.      * @return self
  359.      */
  360.     public function setSocieteNom(?string $societeNom): self
  361.     {
  362.         $this->societeNom $societeNom;
  363.         return $this;
  364.     }
  365.     
  366.     /**
  367.      * getSocieteAdresse
  368.      *
  369.      * @return string
  370.      */
  371.     public function getSocieteAdresse(): ?string
  372.     {
  373.         return $this->societeAdresse;
  374.     }
  375.     
  376.     /**
  377.      * setSocieteAdresse
  378.      *
  379.      * @param  mixed $societeAdresse
  380.      * @return self
  381.      */
  382.     public function setSocieteAdresse(?string $societeAdresse): self
  383.     {
  384.         $this->societeAdresse $societeAdresse;
  385.         return $this;
  386.     }
  387.     
  388.     /**
  389.      * getSocieteCp
  390.      *
  391.      * @return string
  392.      */
  393.     public function getSocieteCp(): ?string
  394.     {
  395.         return $this->societeCp;
  396.     }
  397.     
  398.     /**
  399.      * setSocieteCp
  400.      *
  401.      * @param  mixed $societeCp
  402.      * @return self
  403.      */
  404.     public function setSocieteCp(?string $societeCp): self
  405.     {
  406.         $this->societeCp $societeCp;
  407.         return $this;
  408.     }
  409.     
  410.     /**
  411.      * getSocieteLocation
  412.      *
  413.      * @return string
  414.      */
  415.     public function getSocieteLocation(): ?string
  416.     {
  417.         return $this->societeLocation;
  418.     }
  419.     
  420.     /**
  421.      * setSocieteLocation
  422.      *
  423.      * @param  mixed $societeLocation
  424.      * @return self
  425.      */
  426.     public function setSocieteLocation(?string $societeLocation): self
  427.     {
  428.         $this->societeLocation $societeLocation;
  429.         return $this;
  430.     }
  431.     
  432.     /**
  433.      * getSocieteVille
  434.      *
  435.      * @return string
  436.      */
  437.     public function getSocieteVille(): ?string
  438.     {
  439.         return $this->societeVille;
  440.     }
  441.     
  442.     /**
  443.      * setSocieteVille
  444.      *
  445.      * @param  mixed $societeVille
  446.      * @return self
  447.      */
  448.     public function setSocieteVille(?string $societeVille): self
  449.     {
  450.         $this->societeVille $societeVille;
  451.         return $this;
  452.     }
  453.     
  454.     /**
  455.      * getSocietePays
  456.      *
  457.      * @return string
  458.      */
  459.     public function getSocietePays(): ?string
  460.     {
  461.         return $this->societePays;
  462.     }
  463.     
  464.     /**
  465.      * setSocietePays
  466.      *
  467.      * @param  mixed $societePays
  468.      * @return self
  469.      */
  470.     public function setSocietePays(?string $societePays): self
  471.     {
  472.         $this->societePays $societePays;
  473.         return $this;
  474.     }
  475.     
  476.     /**
  477.      * getSocieteEmail
  478.      *
  479.      * @return string
  480.      */
  481.     public function getSocieteEmail(): ?string
  482.     {
  483.         return $this->societeEmail;
  484.     }
  485.     
  486.     /**
  487.      * setSocieteEmail
  488.      *
  489.      * @param  mixed $societeEmail
  490.      * @return self
  491.      */
  492.     public function setSocieteEmail(?string $societeEmail): self
  493.     {
  494.         $this->societeEmail $societeEmail;
  495.         return $this;
  496.     }
  497.     
  498.     /**
  499.      * getSocietePhone
  500.      *
  501.      * @return string
  502.      */
  503.     public function getSocietePhone(): ?string
  504.     {
  505.         return $this->societePhone;
  506.     }
  507.     
  508.     /**
  509.      * setSocietePhone
  510.      *
  511.      * @param  mixed $societePhone
  512.      * @return self
  513.      */
  514.     public function setSocietePhone(?string $societePhone): self
  515.     {
  516.         $this->societePhone $societePhone;
  517.         return $this;
  518.     }
  519.     
  520.     /**
  521.      * getSocieteLogoSrc
  522.      *
  523.      * @return string
  524.      */
  525.     public function getSocieteLogoSrc(): ?string
  526.     {
  527.         return $this->societeLogoSrc;
  528.     }
  529.     
  530.     /**
  531.      * setSocieteLogoSrc
  532.      *
  533.      * @param  mixed $societeLogoSrc
  534.      * @return self
  535.      */
  536.     public function setSocieteLogoSrc(?string $societeLogoSrc): self
  537.     {
  538.         $this->societeLogoSrc $societeLogoSrc;
  539.         return $this;
  540.     }
  541.     
  542.     /**
  543.      * getSocieteLogoAlt
  544.      *
  545.      * @return string
  546.      */
  547.     public function getSocieteLogoAlt(): ?string
  548.     {
  549.         return $this->societeLogoAlt;
  550.     }
  551.     
  552.     /**
  553.      * setSocieteLogoAlt
  554.      *
  555.      * @param  mixed $societeLogoAlt
  556.      * @return self
  557.      */
  558.     public function setSocieteLogoAlt(?string $societeLogoAlt): self
  559.     {
  560.         $this->societeLogoAlt $societeLogoAlt;
  561.         return $this;
  562.     }
  563.     
  564.     /**
  565.      * getSocieteLogoTitle
  566.      *
  567.      * @return string
  568.      */
  569.     public function getSocieteLogoTitle(): ?string
  570.     {
  571.         return $this->societeLogoTitle;
  572.     }
  573.     
  574.     /**
  575.      * setSocieteLogoTitle
  576.      *
  577.      * @param  mixed $societeLogoTitle
  578.      * @return self
  579.      */
  580.     public function setSocieteLogoTitle(?string $societeLogoTitle): self
  581.     {
  582.         $this->societeLogoTitle $societeLogoTitle;
  583.         return $this;
  584.     }
  585.     
  586.     /**
  587.      * getSocieteLogoBase64
  588.      *
  589.      * @return string
  590.      */
  591.     public function getSocieteLogoBase64(): ?string
  592.     {
  593.         return $this->societeLogoBase64;
  594.     }
  595.     
  596.     /**
  597.      * setSocieteLogoBase64
  598.      *
  599.      * @param  mixed $societeLogoBase64
  600.      * @return self
  601.      */
  602.     public function setSocieteLogoBase64(?string $societeLogoBase64): self
  603.     {
  604.         $this->societeLogoBase64 $societeLogoBase64;
  605.         return $this;
  606.     }
  607.     
  608.     /**
  609.      * getSocieteFavicon
  610.      *
  611.      * @return string
  612.      */
  613.     public function getSocieteFavicon(): ?string
  614.     {
  615.         return $this->societeFavicon;
  616.     }
  617.     
  618.     /**
  619.      * setSocieteFavicon
  620.      *
  621.      * @param  mixed $societeFavicon
  622.      * @return self
  623.      */
  624.     public function setSocieteFavicon(?string $societeFavicon): self
  625.     {
  626.         $this->societeFavicon $societeFavicon;
  627.         return $this;
  628.     }
  629.     
  630.     /**
  631.      * getSocieteWebsite
  632.      *
  633.      * @return string
  634.      */
  635.     public function getSocieteWebsite(): ?string
  636.     {
  637.         return $this->societeWebsite;
  638.     }
  639.     
  640.     /**
  641.      * setSocieteWebsite
  642.      *
  643.      * @param  mixed $societeWebsite
  644.      * @return self
  645.      */
  646.     public function setSocieteWebsite(?string $societeWebsite): self
  647.     {
  648.         $this->societeWebsite $societeWebsite;
  649.         return $this;
  650.     }
  651.     
  652.     /**
  653.      * getRefTitle
  654.      *
  655.      * @return string
  656.      */
  657.     public function getRefTitle(): ?string
  658.     {
  659.         return $this->refTitle;
  660.     }
  661.     
  662.     /**
  663.      * setRefTitle
  664.      *
  665.      * @param  mixed $refTitle
  666.      * @return self
  667.      */
  668.     public function setRefTitle(?string $refTitle): self
  669.     {
  670.         $this->refTitle $refTitle;
  671.         return $this;
  672.     }
  673.     
  674.     /**
  675.      * getRefKeyword
  676.      *
  677.      * @return string
  678.      */
  679.     public function getRefKeyword(): ?string
  680.     {
  681.         return $this->refKeyword;
  682.     }
  683.     
  684.     /**
  685.      * setRefKeyword
  686.      *
  687.      * @param  mixed $refKeyword
  688.      * @return self
  689.      */
  690.     public function setRefKeyword(?string $refKeyword): self
  691.     {
  692.         $this->refKeyword $refKeyword;
  693.         return $this;
  694.     }
  695.     
  696.     /**
  697.      * getRefDescription
  698.      *
  699.      * @return string
  700.      */
  701.     public function getRefDescription(): ?string
  702.     {
  703.         return $this->refDescription;
  704.     }
  705.     
  706.     /**
  707.      * setRefDescription
  708.      *
  709.      * @param  mixed $refDescription
  710.      * @return self
  711.      */
  712.     public function setRefDescription(?string $refDescription): self
  713.     {
  714.         $this->refDescription $refDescription;
  715.         return $this;
  716.     }
  717.     
  718.     /**
  719.      * getRefAuthor
  720.      *
  721.      * @return string
  722.      */
  723.     public function getRefAuthor(): ?string
  724.     {
  725.         return $this->refAuthor;
  726.     }
  727.     
  728.     /**
  729.      * setRefAuthor
  730.      *
  731.      * @param  mixed $refAuthor
  732.      * @return self
  733.      */
  734.     public function setRefAuthor(?string $refAuthor): self
  735.     {
  736.         $this->refAuthor $refAuthor;
  737.         return $this;
  738.     }
  739.     
  740.     /**
  741.      * getLengthToken
  742.      *
  743.      * @return int
  744.      */
  745.     public function getLengthToken(): ?int
  746.     {
  747.         return $this->lengthToken;
  748.     }
  749.     
  750.     /**
  751.      * setLengthToken
  752.      *
  753.      * @param  mixed $lengthToken
  754.      * @return self
  755.      */
  756.     public function setLengthToken(?int $lengthToken): self
  757.     {
  758.         $this->lengthToken $lengthToken;
  759.         return $this;
  760.     }
  761.     /**
  762.      * getSrc404
  763.      *
  764.      * @return string
  765.      */
  766.     public function getSrc404(): ?string
  767.     {
  768.         return $this->src404;
  769.     }
  770.     
  771.     /**
  772.      * setSrc404
  773.      *
  774.      * @param  mixed $src404
  775.      * @return self
  776.      */
  777.     public function setSrc404(?string $src404): self
  778.     {
  779.         $this->src404 $src404;
  780.         return $this;
  781.     }
  782.     
  783.     /**
  784.      * getAlt404
  785.      *
  786.      * @return string
  787.      */
  788.     public function getAlt404(): ?string
  789.     {
  790.         return $this->alt404;
  791.     }
  792.     
  793.     /**
  794.      * setAlt404
  795.      *
  796.      * @param  mixed $alt404
  797.      * @return self
  798.      */
  799.     public function setAlt404(?string $alt404): self
  800.     {
  801.         $this->alt404 $alt404;
  802.         return $this;
  803.     }
  804.     
  805.     /**
  806.      * getTitle404
  807.      *
  808.      * @return string
  809.      */
  810.     public function getTitle404(): ?string
  811.     {
  812.         return $this->title404;
  813.     }
  814.     
  815.     /**
  816.      * setTitle404
  817.      *
  818.      * @param  mixed $title404
  819.      * @return self
  820.      */
  821.     public function setTitle404(?string $title404): self
  822.     {
  823.         $this->title404 $title404;
  824.         return $this;
  825.     }
  826.     
  827.     /**
  828.      * getMessage404
  829.      *
  830.      * @return string
  831.      */
  832.     public function getMessage404(): ?string
  833.     {
  834.         return $this->message404;
  835.     }
  836.     
  837.     /**
  838.      * setMessage404
  839.      *
  840.      * @param  mixed $message404
  841.      * @return self
  842.      */
  843.     public function setMessage404(?string $message404): self
  844.     {
  845.         $this->message404 $message404;
  846.         return $this;
  847.     }
  848.     
  849.     /**
  850.      * getSrc403
  851.      *
  852.      * @return string
  853.      */
  854.     public function getSrc403(): ?string
  855.     {
  856.         return $this->src403;
  857.     }
  858.     
  859.     /**
  860.      * setSrc403
  861.      *
  862.      * @param  mixed $src403
  863.      * @return self
  864.      */
  865.     public function setSrc403(?string $src403): self
  866.     {
  867.         $this->src403 $src403;
  868.         return $this;
  869.     }
  870.     
  871.     /**
  872.      * getAlt403
  873.      *
  874.      * @return string
  875.      */
  876.     public function getAlt403(): ?string
  877.     {
  878.         return $this->alt403;
  879.     }
  880.     
  881.     /**
  882.      * setAlt403
  883.      *
  884.      * @param  mixed $alt403
  885.      * @return self
  886.      */
  887.     public function setAlt403(?string $alt403): self
  888.     {
  889.         $this->alt403 $alt403;
  890.         return $this;
  891.     }
  892.     
  893.     /**
  894.      * getTitle403
  895.      *
  896.      * @return string
  897.      */
  898.     public function getTitle403(): ?string
  899.     {
  900.         return $this->title403;
  901.     }
  902.     
  903.     /**
  904.      * setTitle403
  905.      *
  906.      * @param  mixed $title403
  907.      * @return self
  908.      */
  909.     public function setTitle403(?string $title403): self
  910.     {
  911.         $this->title403 $title403;
  912.         return $this;
  913.     }
  914.     
  915.     /**
  916.      * getMessage403
  917.      *
  918.      * @return string
  919.      */
  920.     public function getMessage403(): ?string
  921.     {
  922.         return $this->message403;
  923.     }
  924.     
  925.     /**
  926.      * setMessage403
  927.      *
  928.      * @param  mixed $message403
  929.      * @return self
  930.      */
  931.     public function setMessage403(?string $message403): self
  932.     {
  933.         $this->message403 $message403;
  934.         return $this;
  935.     }
  936.     public function getSujetSize(): ?int
  937.     {
  938.         return $this->sujetSize;
  939.     }
  940.     public function setSujetSize(?int $sujetSize): self
  941.     {
  942.         $this->sujetSize $sujetSize;
  943.         return $this;
  944.     }
  945.     public function getCallSenior(): ?string
  946.     {
  947.         return $this->callSenior;
  948.     }
  949.     public function setCallSenior(?string $callSenior): self
  950.     {
  951.         $this->callSenior $callSenior;
  952.         return $this;
  953.     }
  954.     public function getAgendaBefore(): ?int
  955.     {
  956.         return $this->agendaBefore;
  957.     }
  958.     public function setAgendaBefore(?int $agendaBefore): self
  959.     {
  960.         $this->agendaBefore $agendaBefore;
  961.         return $this;
  962.     }
  963.     public function getAgendaNext(): ?int
  964.     {
  965.         return $this->agendaNext;
  966.     }
  967.     public function setAgendaNext(?int $agendaNext): self
  968.     {
  969.         $this->agendaNext $agendaNext;
  970.         return $this;
  971.     }
  972.     public function getMessageDefault(): ?string
  973.     {
  974.         return $this->messageDefault;
  975.     }
  976.     public function setMessageDefault(?string $messageDefault): self
  977.     {
  978.         $this->messageDefault $messageDefault;
  979.         return $this;
  980.     }
  981.     public function getTitreContact(): ?string
  982.     {
  983.         return $this->titreContact;
  984.     }
  985.     public function setTitreContact(?string $titreContact): self
  986.     {
  987.         $this->titreContact $titreContact;
  988.         return $this;
  989.     }
  990.     public function getDescriptionContact(): ?string
  991.     {
  992.         return $this->descriptionContact;
  993.     }
  994.     public function setDescriptionContact(?string $descriptionContact): self
  995.     {
  996.         $this->descriptionContact $descriptionContact;
  997.         return $this;
  998.     }
  999.     public function getEmailContact(): ?string
  1000.     {
  1001.         return $this->emailContact;
  1002.     }
  1003.     public function setEmailContact(?string $emailContact): self
  1004.     {
  1005.         $this->emailContact $emailContact;
  1006.         return $this;
  1007.     }
  1008.     public function getTitreAccueil(): ?string
  1009.     {
  1010.         return $this->titreAccueil;
  1011.     }
  1012.     public function setTitreAccueil(?string $titreAccueil): self
  1013.     {
  1014.         $this->titreAccueil $titreAccueil;
  1015.         return $this;
  1016.     }
  1017.     public function getAgendaTitre(): ?string
  1018.     {
  1019.         return $this->agendaTitre;
  1020.     }
  1021.     public function setAgendaTitre(?string $agendaTitre): self
  1022.     {
  1023.         $this->agendaTitre $agendaTitre;
  1024.         return $this;
  1025.     }
  1026.     public function getAgendaSrc(): ?string
  1027.     {
  1028.         return $this->agendaSrc;
  1029.     }
  1030.     public function setAgendaSrc(?string $agendaSrc): self
  1031.     {
  1032.         $this->agendaSrc $agendaSrc;
  1033.         return $this;
  1034.     }
  1035.     public function getAgendaAlt(): ?string
  1036.     {
  1037.         return $this->agendaAlt;
  1038.     }
  1039.     public function setAgendaAlt(?string $agendaAlt): self
  1040.     {
  1041.         $this->agendaAlt $agendaAlt;
  1042.         return $this;
  1043.     }
  1044.     public function getAgendaTitle(): ?string
  1045.     {
  1046.         return $this->agendaTitle;
  1047.     }
  1048.     public function setAgendaTitle(?string $agendaTitle): self
  1049.     {
  1050.         $this->agendaTitle $agendaTitle;
  1051.         return $this;
  1052.     }
  1053.     public function getAgendaDescription(): ?string
  1054.     {
  1055.         return $this->agendaDescription;
  1056.     }
  1057.     public function setAgendaDescription(?string $agendaDescription): self
  1058.     {
  1059.         $this->agendaDescription $agendaDescription;
  1060.         return $this;
  1061.     }
  1062.     public function getAgendaSrcImg(): ?string
  1063.     {
  1064.         return $this->agendaSrcImg;
  1065.     }
  1066.     public function setAgendaSrcImg(?string $agendaSrcImg): self
  1067.     {
  1068.         $this->agendaSrcImg $agendaSrcImg;
  1069.         return $this;
  1070.     }
  1071.     public function getAgendaAltImg(): ?string
  1072.     {
  1073.         return $this->agendaAltImg;
  1074.     }
  1075.     public function setAgendaAltImg(?string $agendaAltImg): self
  1076.     {
  1077.         $this->agendaAltImg $agendaAltImg;
  1078.         return $this;
  1079.     }
  1080.     public function getAgendaTitleImg(): ?string
  1081.     {
  1082.         return $this->agendaTitleImg;
  1083.     }
  1084.     public function setAgendaTitleImg(?string $agendaTitleImg): self
  1085.     {
  1086.         $this->agendaTitleImg $agendaTitleImg;
  1087.         return $this;
  1088.     }
  1089.     public function getAgendaIntro(): ?string
  1090.     {
  1091.         return $this->agendaIntro;
  1092.     }
  1093.     public function setAgendaIntro(?string $agendaIntro): self
  1094.     {
  1095.         $this->agendaIntro $agendaIntro;
  1096.         return $this;
  1097.     }
  1098.     public function getColor(): ?string
  1099.     {
  1100.         return $this->color;
  1101.     }
  1102.     public function setColor(?string $color): self
  1103.     {
  1104.         $this->color $color;
  1105.         return $this;
  1106.     }
  1107.     public function getNotice(): ?string
  1108.     {
  1109.         return $this->notice;
  1110.     }
  1111.     public function setNotice(?string $notice): self
  1112.     {
  1113.         $this->notice $notice;
  1114.         return $this;
  1115.     }
  1116.     public function getTchap(): ?string
  1117.     {
  1118.         return $this->tchap;
  1119.     }
  1120.     public function setTchap(?string $tchap): self
  1121.     {
  1122.         $this->tchap $tchap;
  1123.         return $this;
  1124.     }
  1125.     public function isTchapBool(): ?bool
  1126.     {
  1127.         return $this->tchapBool;
  1128.     }
  1129.     public function setTchapBool(?bool $tchapBool): self
  1130.     {
  1131.         $this->tchapBool $tchapBool;
  1132.         return $this;
  1133.     }
  1134.     public function getTitreSecondContact(): ?string
  1135.     {
  1136.         return $this->titreSecondContact;
  1137.     }
  1138.     public function setTitreSecondContact(?string $titreSecondContact): self
  1139.     {
  1140.         $this->titreSecondContact $titreSecondContact;
  1141.         return $this;
  1142.     }
  1143.     public function getTitreTchap(): ?string
  1144.     {
  1145.         return $this->titreTchap;
  1146.     }
  1147.     public function setTitreTchap(?string $titreTchap): self
  1148.     {
  1149.         $this->titreTchap $titreTchap;
  1150.         return $this;
  1151.     }
  1152.     public function getTitreLien(): ?string
  1153.     {
  1154.         return $this->titreLien;
  1155.     }
  1156.     public function setTitreLien(?string $titreLien): self
  1157.     {
  1158.         $this->titreLien $titreLien;
  1159.         return $this;
  1160.     }
  1161.     public function getColorLien(): ?string
  1162.     {
  1163.         return $this->colorLien;
  1164.     }
  1165.     public function setColorLien(?string $colorLien): self
  1166.     {
  1167.         $this->colorLien $colorLien;
  1168.         return $this;
  1169.     }
  1170.     public function getSizeDroit(): ?string
  1171.     {
  1172.         return $this->sizeDroit;
  1173.     }
  1174.     public function setSizeDroit(?string $sizeDroit): self
  1175.     {
  1176.         $this->sizeDroit $sizeDroit;
  1177.         return $this;
  1178.     }
  1179.     public function getLimitDroit(): ?string
  1180.     {
  1181.         return $this->limitDroit;
  1182.     }
  1183.     public function setLimitDroit(?string $limitDroit): self
  1184.     {
  1185.         $this->limitDroit $limitDroit;
  1186.         return $this;
  1187.     }
  1188.     public function getSizeAgora(): ?string
  1189.     {
  1190.         return $this->sizeAgora;
  1191.     }
  1192.     public function setSizeAgora(?string $sizeAgora): self
  1193.     {
  1194.         $this->sizeAgora $sizeAgora;
  1195.         return $this;
  1196.     }
  1197.     public function getLimitAgora(): ?string
  1198.     {
  1199.         return $this->limitAgora;
  1200.     }
  1201.     public function setLimitAgora(?string $limitAgora): self
  1202.     {
  1203.         $this->limitAgora $limitAgora;
  1204.         return $this;
  1205.     }
  1206.     public function getSizePost(): ?string
  1207.     {
  1208.         return $this->sizePost;
  1209.     }
  1210.     public function setSizePost(?string $sizePost): self
  1211.     {
  1212.         $this->sizePost $sizePost;
  1213.         return $this;
  1214.     }
  1215.     public function getLimitPost(): ?string
  1216.     {
  1217.         return $this->limitPost;
  1218.     }
  1219.     public function setLimitPost(?string $limitPost): self
  1220.     {
  1221.         $this->limitPost $limitPost;
  1222.         return $this;
  1223.     }
  1224.     public function getSizeParcours(): ?string
  1225.     {
  1226.         return $this->sizeParcours;
  1227.     }
  1228.     public function setSizeParcours(?string $sizeParcours): self
  1229.     {
  1230.         $this->sizeParcours $sizeParcours;
  1231.         return $this;
  1232.     }
  1233.     public function getSizeCompetences(): ?string
  1234.     {
  1235.         return $this->sizeCompetences;
  1236.     }
  1237.     public function setSizeCompetences(?string $sizeCompetences): self
  1238.     {
  1239.         $this->sizeCompetences $sizeCompetences;
  1240.         return $this;
  1241.     }
  1242.     public function getSizeAspiration(): ?string
  1243.     {
  1244.         return $this->sizeAspiration;
  1245.     }
  1246.     public function setSizeAspiration(?string $sizeAspiration): self
  1247.     {
  1248.         $this->sizeAspiration $sizeAspiration;
  1249.         return $this;
  1250.     }
  1251.     public function getResultat(): ?string
  1252.     {
  1253.         return $this->resultat;
  1254.     }
  1255.     public function setResultat(?string $resultat): self
  1256.     {
  1257.         $this->resultat $resultat;
  1258.         return $this;
  1259.     }
  1260.     public function getHoraire(): ?string
  1261.     {
  1262.         return $this->horaire;
  1263.     }
  1264.     public function setHoraire(?string $horaire): self
  1265.     {
  1266.         $this->horaire $horaire;
  1267.         return $this;
  1268.     }
  1269.     public function getSizeAgenda(): ?string
  1270.     {
  1271.         return $this->sizeAgenda;
  1272.     }
  1273.     public function setSizeAgenda(?string $sizeAgenda): self
  1274.     {
  1275.         $this->sizeAgenda $sizeAgenda;
  1276.         return $this;
  1277.     }
  1278.     public function getLimitAgenda(): ?string
  1279.     {
  1280.         return $this->limitAgenda;
  1281.     }
  1282.     public function setLimitAgenda(?string $limitAgenda): self
  1283.     {
  1284.         $this->limitAgenda $limitAgenda;
  1285.         return $this;
  1286.     }
  1287.     public function getLinkAgenda(): ?string
  1288.     {
  1289.         return $this->linkAgenda;
  1290.     }
  1291.     public function setLinkAgenda(?string $linkAgenda): self
  1292.     {
  1293.         $this->linkAgenda $linkAgenda;
  1294.         return $this;
  1295.     }
  1296.     public function getTextPresentiel(): ?string
  1297.     {
  1298.         return $this->textPresentiel;
  1299.     }
  1300.     public function setTextPresentiel(?string $textPresentiel): self
  1301.     {
  1302.         $this->textPresentiel $textPresentiel;
  1303.         return $this;
  1304.     }
  1305.     public function getTextDistanciel(): ?string
  1306.     {
  1307.         return $this->textDistanciel;
  1308.     }
  1309.     public function setTextDistanciel(?string $textDistanciel): self
  1310.     {
  1311.         $this->textDistanciel $textDistanciel;
  1312.         return $this;
  1313.     }
  1314.     public function getInscription(): ?string
  1315.     {
  1316.         return $this->inscription;
  1317.     }
  1318.     public function setInscription(?string $inscription): self
  1319.     {
  1320.         $this->inscription $inscription;
  1321.         return $this;
  1322.     }
  1323.     public function getLimitIntroActu(): ?string
  1324.     {
  1325.         return $this->limitIntroActu;
  1326.     }
  1327.     public function setLimitIntroActu(?string $limitIntroActu): self
  1328.     {
  1329.         $this->limitIntroActu $limitIntroActu;
  1330.         return $this;
  1331.     }
  1332. }