diff --git a/lib/Doctrine/Entities/SessionModule.php b/lib/Doctrine/Entities/SessionModule.php new file mode 100644 index 0000000000..3e6c253b85 --- /dev/null +++ b/lib/Doctrine/Entities/SessionModule.php @@ -0,0 +1,135 @@ +id; + } + + /** + * Set module_id + * + * @param integer $moduleId + * @return SessionModule + */ + public function setModuleId($moduleId) + { + $this->module_id = $moduleId; + return $this; + } + + /** + * Get module_id + * + * @return integer + */ + public function getModuleId() + { + return $this->module_id; + } + + /** + * Set created + * + * @param datetime $created + * @return SessionModule + */ + public function setCreated($created) + { + $this->created = $created; + return $this; + } + + /** + * Get created + * + * @return datetime + */ + public function getCreated() + { + return $this->created; + } + + /** + * Set updated + * + * @param datetime $updated + * @return SessionModule + */ + public function setUpdated($updated) + { + $this->updated = $updated; + return $this; + } + + /** + * Get updated + * + * @return datetime + */ + public function getUpdated() + { + return $this->updated; + } + + /** + * Set session + * + * @param Entities\Session $session + * @return SessionModule + */ + public function setSession(\Entities\Session $session = null) + { + $this->session = $session; + return $this; + } + + /** + * Get session + * + * @return Entities\Session + */ + public function getSession() + { + return $this->session; + } +} \ No newline at end of file