/**
  * @return \Components\Http_Session
  */
 public function getSession()
 {
     return Http_Session::current();
 }
 /**
  * @return \Components\Http_Session
  */
 public function session()
 {
     if (null === $this->m_session) {
         $this->m_session = Http_Session::forNamespace($this->id());
     }
     return $this->m_session;
 }