id; } /** * @return int */ public function getTaskId() { return $this->task_id; } /** * @return mixed * @deprecated */ public function getPath() { return $this->path; } /** * @return string */ public function getFilepath() { return base64_decode( $this->filepath); } /** * @return string */ public function getName() { return $this->name; } /** * @return string */ public function getMimetype() { return $this->mimetype; } /** * @return int */ public function getSize() { return $this->size; } /** * @return int */ public function getRx() { return $this->rx; } /** * @return string */ public function getStatus() { return $this->status; } /** * @return string */ public function getPriority() { return $this->priority; } /** * @param string $priority */ public function setPriority( $priority) { $this->priority = $priority; } /** * @return string */ public function getError() { return $this->error; } }