getData('roleId')); } /** * Get the URL path associated with this role's operations. * @return String the path */ function getRolePath() { return RoleDAO::getRolePath($this->getData('roleId')); } // // Get/set methods // /** * Get conference ID associated with role. * @return int */ function getConferenceId() { return $this->getData('conferenceId'); } /** * Set conference ID associated with role. * @param $conferenceId int */ function setConferenceId($conferenceId) { return $this->setData('conferenceId', $conferenceId); } /** * Get scheduled conference ID associated with role. * @return int */ function getSchedConfId() { return $this->getData('schedConfId'); } /** * Set scheduled conference ID associated with role. * @param $conferenceId int */ function setSchedConfId($schedConfId) { return $this->setData('schedConfId', $schedConfId); } /** * Get user ID associated with role. * @return int */ function getUserId() { return $this->getData('userId'); } /** * Set user ID associated with role. * @param $userId int */ function setUserId($userId) { return $this->setData('userId', $userId); } /** * Get role ID of this role. * @return int */ function getRoleId() { return $this->getData('roleId'); } /** * Set role ID of this role. * @param $roleId int */ function setRoleId($roleId) { return $this->setData('roleId', $roleId); } } ?>