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

package RPS::ArtistRoyalty::Process;
use strict;

use Data::Dumper;

use lib '/app/tools/rps/lib';
use lib '/app/tools/common/lib';
use Common::Process;
use Common::Assert;
use Common::Log;
use RPS::RoyaltyRun::Process;

use RPS::DB::Item::NewArtistContract;

use base 'RPS::RoyaltyRun::Process';

sub _getReserveErrors {
    my $self = shift;

    return RPS::DB::Item::NewArtistContract->GetAllWithoutReserveLiquidation();
}

# Going to add the cached metadata accessors here.
# I am going to want these in both the RunController and CreateStatement classes.

1;
