public function execute(Context $context)
 {
     $session = new Session();
     $session->start();
     if (!$session->valid()) {
         throw new AccessDeniedException('You must be logged in to do that.');
     }
     $session->revalidate();
     return $this->action->execute($context);
 }