Firewall-Config-Parser
view release on metacpan or search on metacpan
lib/Firewall/Config/Parser/Report.pm view on Meta::CPAN
package Firewall::Config::Parser::Report;
#------------------------------------------------------------------------------
# å è½½æ©å±æ¨¡å
#------------------------------------------------------------------------------
use Moose;
use namespace::autoclean;
#------------------------------------------------------------------------------
# Firewall::Config::Parser::Report éç¨å±æ§
#------------------------------------------------------------------------------
has source =>
( is => 'ro', isa => 'HashRef[Firewall::Policy::Element::Source]', default => sub { {} }, writer => 'setSource', );
has destination => (
is => 'ro',
isa => 'HashRef[Firewall::Policy::Element::Destination]',
default => sub { {} },
writer => 'setDestination',
);
has service => (
is => 'ro',
isa => 'HashRef[HashRef[Firewall::Policy::Element::Service]]',
default => sub { {} },
writer => 'setService',
);
__PACKAGE__->meta->make_immutable;
1;
( run in 0.589 second using v1.01-cache-2.11-cpan-39bf76dae61 )