setData('submissionId', $submissionId); } /** * Get the submission ID * @return int */ function getSubmissionId() { return $this->getData('submissionId'); } /** * Set the stage ID * @param $stageId int */ function setStageId($stageId) { $this->setData('stageId', $stageId); } /** * Get the stage ID * @return int */ function getStageId() { return $this->getData('stageId'); } /** * Set the User Group ID * @param $userGroupId int */ function setUserGroupId($userGroupId) { $this->setData('userGroupId', $userGroupId); } /** * Get the User Group ID * @return int */ function getUserGroupId() { return $this->getData('userGroupId'); } /** * Get user ID for this stageAssignment. * @return int */ function getUserId() { return $this->getData('userId'); } /** * Set user ID for this stageAssignment. * @param $userId int */ function setUserId($userId) { $this->setData('userId', $userId); } /** * Set the date assigned * @param $dateAssigned datestamp (YYYY-MM-DD HH:MM:SS) */ function setDateAssigned($dateAssigned) { $this->setData('dateAssigned', $dateAssigned); } /** * Get the date assigned * @return datestamp (YYYY-MM-DD HH:MM:SS) */ function getDateAssigned() { return $this->getData('dateAssigned'); } /** * Get recommendOnly option. * @return boolean */ function getRecommendOnly() { return $this->getData('recommendOnly'); } /** * Set recommendOnly option. * @param $recommendOnly boolean */ function setRecommendOnly($recommendOnly) { $this->setData('recommendOnly', $recommendOnly); } } ?>