#------------------------------------------------------------
# Copyright (C) 2006 RoyaltyShare, Inc.   All Rights Reserved
# $Id$
#------------------------------------------------------------
package Corp::Customers::KillRockStars;
use strict;
use warnings;

use lib '/app/tools/common/lib';
use RSApache::Response::XSLT;
use RSApache::Command;
use base 'RSApache::Command';

sub cmd  { return 'kill_rock_stars'; }
sub area { return 'customers'; }

use constant kTemplate => "/app/tools/corp/templates/customers/kill_rock_stars.xsl";


sub execute
{
	my ($self) = @_;

	my $response = $self->SUPER::execute();
	return $response if $response;

	$response = RSApache::Response::XSLT->new($self->{xml}, kTemplate);
	return $response;
}



1;
