|
NAMENetApp::Filer::Option -- OO Class for representing NetApp Filer options SYNOPSIS use NetApp::Filer;
my $filer = NetApp::Filer->new({ ... });
my @options = $filer->get_options;
my $options = $filer->get_option( $name );
$filer->set_option(
name => $name,
value => $value,
);
DESCRIPTIONThis class is used to encapsulate the NetApp Filer options. METHODSget_nameReturns the name of the option. get_valueReturns the value for the option.
|