public FileBasedEventConsumer createEventConsumer(
     FileBasedEventConsumerConfiguration configuration) {
   throw new UnsupportedOperationException("Could not create consumer " + configuration.getId());
   //        try
   //        {
   //            return new FileBasedEventConsumer(configuration, );
   //        }
   //        catch (IOException e)
   //        {
   //            if (LOGGER.isErrorEnabled())
   //            {
   //                LOGGER.error(e.getLocalizedMessage(), e);
   //            }
   //        }
   //        catch (InterruptedException e)
   //        {
   //            if (LOGGER.isErrorEnabled())
   //            {
   //                LOGGER.error(e.getLocalizedMessage(), e);
   //            }
   //        }
   //
   //        return null;
 }