# $Id$ # # Copyright (c) 2013 NetApp, Inc., All Rights Reserved # Any use, modification, or distribution is prohibited # without prior written consent from NetApp, Inc. # ## @summary ExportPolicyRuleInfo ComponentState Module (auto-generated by OCUM CGT) ## @author dl-mpo-nacl-dev@netapp.com ## @status shared ## @pod here =head1 NAME NACL::CS::DFM::ExportPolicyRuleInfo =head1 DESCRIPTION C is a derived class of L. It represents the state of a ExportPolicyRuleInfo. =head1 ATTRIBUTES The individual pieces of data that are part of the state of the ExportPolicyRuleInfo element are the attributes of the ExportPolicyRuleInfo ComponentState. =over =item C<< protocol >> =item C<< resource_key >> =item C<< rule_index >> =item C<< client_match >> =item C<< ro_rule >> =item C<< vserver_name >> =item C<< export_policy_name >> =item C<< vserver_resource_key >> =item C<< rw_rule >> =item C<< export_policy_resource_key >> =back =cut package NACL::CS::DFM::ExportPolicyRuleInfo; use strict; use warnings; use Params::Validate qw(validate validate_with SCALAR ARRAYREF HASHREF); use NACL::ComponentUtils qw(Dumper); use NATE::Log qw(log_global); my $Log = log_global(); my $may_enter = $Log->may_enter(); my $may_exit = $Log->may_exit(); use base 'NACL::CS::ComponentState::DFM'; use Class::MethodMaker [ new => [ '-hash', 'new' ], scalar => 'protocol', scalar => 'resource_key', scalar => 'rule_index', scalar => 'client_match', scalar => 'ro_rule', scalar => 'vserver_name', scalar => 'export_policy_name', scalar => 'vserver_resource_key', scalar => 'rw_rule', scalar => 'export_policy_resource_key', ]; 1;