Gina Next Generation
 All Classes Namespaces Files Functions Variables
AccessService.php
Go to the documentation of this file.
00001 <?php
00002 
00003 namespace Etrali\GinangBundle\Entity;
00004 
00005 use Doctrine\ORM\Mapping as ORM;
00006 
00007 /**
00008  * AccessService
00009  *
00010  * @ORM\Table(name="access_service")
00011  * @ORM\Entity
00012  */
00013 class AccessService
00014 {
00015     /**
00016      * @var integer
00017      *
00018      * @ORM\Column(name="id_access_service", type="integer", nullable=false)
00019      * @ORM\Id
00020      * @ORM\GeneratedValue(strategy="IDENTITY")
00021      */
00022     private $idAccessService;
00023 
00024     /**
00025      * @var boolean
00026      *
00027      * @ORM\Column(name="bl_deactivated", type="boolean", nullable=true)
00028      */
00029     private $blDeactivated;
00030 
00031     /**
00032      * @var \Access
00033      *
00034      * @ORM\ManyToOne(targetEntity="Access")
00035      * @ORM\JoinColumns({
00036      *   @ORM\JoinColumn(name="id_access", referencedColumnName="id_access")
00037      * })
00038      */
00039     private $idAccess;
00040 
00041     /**
00042      * @var \Service
00043      *
00044      * @ORM\ManyToOne(targetEntity="Service")
00045      * @ORM\JoinColumns({
00046      *   @ORM\JoinColumn(name="id_service", referencedColumnName="id_service")
00047      * })
00048      */
00049     private $idService;
00050 
00051 
00052 
00053     /**
00054      * Get idAccessService
00055      *
00056      * @return integer 
00057      */
00058     public function getIdAccessService()
00059     {
00060         return $this->idAccessService;
00061     }
00062 
00063     /**
00064      * Set blDeactivated
00065      *
00066      * @param boolean $blDeactivated
00067      * @return AccessService
00068      */
00069     public function setBlDeactivated($blDeactivated)
00070     {
00071         $this->blDeactivated = $blDeactivated;
00072     
00073         return $this;
00074     }
00075 
00076     /**
00077      * Get blDeactivated
00078      *
00079      * @return boolean 
00080      */
00081     public function getBlDeactivated()
00082     {
00083         return $this->blDeactivated;
00084     }
00085 
00086     /**
00087      * Set idAccess
00088      *
00089      * @param \Etrali\GinangBundle\Entity\Access $idAccess
00090      * @return AccessService
00091      */
00092     public function setIdAccess(\Etrali\GinangBundle\Entity\Access $idAccess = null)
00093     {
00094         $this->idAccess = $idAccess;
00095     
00096         return $this;
00097     }
00098 
00099     /**
00100      * Get idAccess
00101      *
00102      * @return \Etrali\GinangBundle\Entity\Access 
00103      */
00104     public function getIdAccess()
00105     {
00106         return $this->idAccess;
00107     }
00108 
00109     /**
00110      * Set idService
00111      *
00112      * @param \Etrali\GinangBundle\Entity\Service $idService
00113      * @return AccessService
00114      */
00115     public function setIdService(\Etrali\GinangBundle\Entity\Service $idService = null)
00116     {
00117         $this->idService = $idService;
00118     
00119         return $this;
00120     }
00121 
00122     /**
00123      * Get idService
00124      *
00125      * @return \Etrali\GinangBundle\Entity\Service 
00126      */
00127     public function getIdService()
00128     {
00129         return $this->idService;
00130     }
00131 }
 All Classes Namespaces Files Functions Variables