#------------------------------------------------------------
# Copyright (C) 2010 RoyaltyShare, Inc.   All Rights Reserved
# $Id$
#------------------------------------------------------------
package BookPub::Catalog::Import::Job::ImageRetrieve;

use strict;
use warnings;

use Sys::Hostname;

use lib '/app/tools/common/lib';
use Common::Assert;
use Common::RSDB;

use lib '/app/tools/bookpub/lib';
use BookPub::Config;

use lib '/app/tools/job/lib';
use Job::Job;
use Job::DB::Item::Job;

use base 'BookPub::Catalog::Import::Job::Base';

# I want to use a different Class for this job.  This process could
# take a very long time to complete, and it really is a post-process task.
#
sub _defaultClass { return 'DTMVCatalogImportPostProcess'; }

sub _scriptName      { return 'retrieve_image_files_import.pl'; }
sub _defaultSubclass { return 'ImageRetrieve'; }
sub _defaultLogFile  { return 'image_retrieve_log'; }

###
1;    #
###

