Chamilo is a learning management system focused on ease of use and accessibility
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
chamilo-lms/src/ChamiloLMS/CoreBundle/Entity/AccessUrlRelSession.php

79 lines
1.4 KiB

<?php
namespace ChamiloLMS\CoreBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* AccessUrlRelSession
*
* @ORM\Table(name="access_url_rel_session")
* @ORM\Entity
*/
class AccessUrlRelSession
{
/**
* @var integer
*
* @ORM\Column(name="access_url_id", type="integer", precision=0, scale=0, nullable=false, unique=false)
* @ORM\Id
* @ORM\GeneratedValue(strategy="NONE")
*/
private $accessUrlId;
/**
* @var integer
*
* @ORM\Column(name="session_id", type="integer", precision=0, scale=0, nullable=false, unique=false)
* @ORM\Id
* @ORM\GeneratedValue(strategy="NONE")
*/
private $sessionId;
/**
* Set accessUrlId
*
* @param integer $accessUrlId
* @return AccessUrlRelSession
*/
public function setAccessUrlId($accessUrlId)
{
$this->accessUrlId = $accessUrlId;
return $this;
}
/**
* Get accessUrlId
*
* @return integer
*/
public function getAccessUrlId()
{
return $this->accessUrlId;
}
/**
* Set sessionId
*
* @param integer $sessionId
* @return AccessUrlRelSession
*/
public function setSessionId($sessionId)
{
$this->sessionId = $sessionId;
return $this;
}
/**
* Get sessionId
*
* @return integer
*/
public function getSessionId()
{
return $this->sessionId;
}
}