/**
  * This method cares for a redirect within an inline frame.
  *
  * @Route("/route/handleInlineRedirect/{idPrefix}/{commandName}/{id}",
  *        requirements = {"id" = "\d+"},
  *        defaults = {"commandName" = "", "id" = 0},
  *        methods = {"GET"}
  * )
  *
  * @param string  $idPrefix    Prefix for inline window element identifier.
  * @param string  $commandName Name of action to be performed (create or edit).
  * @param integer $id          Id of created item (used for activating auto completion after closing the modal window).
  *
  * @return boolean Whether the inline redirect has been performed or not.
  */
 public function handleInlineRedirectAction($idPrefix, $commandName, $id = 0)
 {
     return parent::handleInlineRedirectAction($idPrefix, $commandName, $id);
 }