/**
  * Asking for storing restore config
  *
  * @param InputInterface $input
  * @param OutputInterface $output
  * @param RestoreJob $job
  * @author Daniel Wendlandt
  */
 private function askForStoringConfig(InputInterface $input, OutputInterface $output, RestoreJob $job)
 {
     $helper = $this->getHelper('question');
     $question = new ConfirmationQuestion('<info>Do you want to store the configuration after successfull restore ?</info> [<comment>y/n</comment>]:', true);
     $createConfig = $helper->ask($input, $output, $question);
     if (!$createConfig) {
         $output->writeln('<error>Not storing config</error>');
         return;
     }
     $defaultName = date('YmdHis') . '_restore';
     $nameQuestion = $this->getQuestion('Please give a name for the config file', $defaultName);
     $configName = $helper->ask($input, $output, $nameQuestion);
     $job->setCreateConfig($createConfig);
     $job->setConfigName($configName);
 }