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 journal ID associated with role. * @return int */ function getJournalId() { return $this->getData('journalId'); } /** * Set journal ID associated with role. * @param $journalId int */ function setJournalId($journalId) { return $this->setData('journalId', $journalId); } /** * 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); } } ?>