/**
  * @method GET
  * @formatOutput
  */
 public function getMovie()
 {
     $moviectrl = new MovieController();
     $response;
     $responsecode;
     try {
         $responsecode = Response::OK;
         $response = $moviectrl->getMovie($this->id);
         $this->logger->info("Obteniendo película: " . $this->id);
     } catch (\Exception $exc) {
         $responsecode = Response::NOTFOUND;
         $response = $this->getErrorArray($exc->getMessage(), $responsecode);
         $this->logger->warn("Obteniendo película: " . $this->id . ". " . $exc->getMessage());
     }
     return new Response($responsecode, $response);
 }