###################################################################
# Copyright (C) 2006 RoyaltyShare, Inc.  All Rights Reserved
###################################################################

package RPS::CronScript;

use lib '/app/tools/rps/lib';
use base 'Common::CronScript';

sub _getProductionClientIDs {
    return Common::RSDB::GetAllRPSClientIDs();
}

sub _getWebProductionClientIDs {
    return Common::RSDB::GetRPSClientIDs( Common::RSApp::GetRealHostname() );
}

sub _getLocalClientIDs {
    return Common::RSDB::GetLocalRPSClientIDs();
}

sub _isValidClientType {
    my $self = shift;
    Common::RSDB::_isRPSClient(shift);
}

1;
