/**
  * Get the associated Apps object
  *
  * @param      PropelPDO Optional Connection object.
  * @return     Apps The associated Apps object.
  * @throws     PropelException
  */
 public function getApps(PropelPDO $con = null)
 {
     if ($this->aApps === null && $this->app_id !== null) {
         $this->aApps = AppsPeer::retrieveByPk($this->app_id);
         /* The following can be used additionally to
         		   guarantee the related object contains a reference
         		   to this object.  This level of coupling may, however, be
         		   undesirable since it could result in an only partially populated collection
         		   in the referenced object.
         		   $this->aApps->addUsuarisAppss($this);
         		 */
     }
     return $this->aApps;
 }