#------------------------------------------------------------
# Copyright (C) 2006 RoyaltyShare, Inc.   All Rights Reserved
# $Id$
#------------------------------------------------------------
package RPS::License::Command::CA::Delete;
use strict;
use warnings;

use lib '/app/tools/rps/lib';
use RPS::Catalog::Command::Show;
use RPS::License::CA::EditForm;
use RPS::License::Command::CA::Edit;

use RPS::License::Command::BaseDelete;
use base 'RPS::License::Command::BaseDelete';

sub area { return 'ca_license'; }

sub _template { return "/app/tools/rps/templates/ca_license/show.xsl"; }
sub _form { return "RPS::License::CA::EditForm"; }
sub _tab { return RPS::Catalog::Command::Show::kTabCALicenses; }
sub _command { return "RPS::License::Command::CA::Edit"; }


1;
