getData('issueId'); } /** * set ID of issue. * @param $issueId int */ function setIssueId($issueId) { return $this->setData('issueId', $issueId); } /** * Get content type of the file. * @ return string */ function getContentType() { return $this->getData('contentType'); } /** * set type of the file. * @param $fileType string */ function setContentType($contentType) { return $this->setData('contentType', $contentType); } /** * Get modified date of file. * @return date */ function getDateModified() { return $this->getData('dateModified'); } /** * set modified date of file. * @param $dateModified date */ function setDateModified($dateModified) { return $this->setData('dateModified', $dateModified); } } ?>