id; } /** * Set sbas_id * * @param integer $sbasId * @return StoryWZ */ public function setSbasId($sbasId) { $this->sbas_id = $sbasId; return $this; } /** * Get sbas_id * * @return integer */ public function getSbasId() { return $this->sbas_id; } /** * Set record_id * * @param integer $recordId * @return StoryWZ */ public function setRecordId($recordId) { $this->record_id = $recordId; return $this; } /** * Get record_id * * @return integer */ public function getRecordId() { return $this->record_id; } public function getRecord(Application $app) { return new \record_adapter($app, $this->getSbasId(), $this->getRecordId()); } public function setRecord(\record_adapter $record) { $this->setRecordId($record->getRecordId()); $this->setSbasId($record->getDataboxId()); } /** * @param User $user * * @return StoryWZ */ public function setUser(User $user) { $this->user = $user; return $this; } /** * @return User */ public function getUser() { return $this->user; } /** * Set created * * @param \DateTime $created * @return StoryWZ */ public function setCreated(\DateTime $created) { $this->created = $created; return $this; } /** * Get created * * @return \DateTime */ public function getCreated() { return $this->created; } }