line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Armadito::Agent::HTTP::Client::ArmaditoAV::Event::DetectionEvent; |
2
|
|
|
|
|
|
|
|
3
|
4
|
|
|
4
|
|
19836376
|
use strict; |
|
4
|
|
|
|
|
5
|
|
|
4
|
|
|
|
|
114
|
|
4
|
4
|
|
|
4
|
|
17
|
use warnings; |
|
4
|
|
|
|
|
6
|
|
|
4
|
|
|
|
|
129
|
|
5
|
4
|
|
|
4
|
|
15
|
use base 'Armadito::Agent::HTTP::Client::ArmaditoAV::Event'; |
|
4
|
|
|
|
|
36
|
|
|
4
|
|
|
|
|
833
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
sub new { |
8
|
0
|
|
|
0
|
1
|
|
my ( $class, %params ) = @_; |
9
|
|
|
|
|
|
|
|
10
|
0
|
|
|
|
|
|
my $self = $class->SUPER::new(%params); |
11
|
|
|
|
|
|
|
|
12
|
0
|
|
|
|
|
|
return $self; |
13
|
|
|
|
|
|
|
} |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
sub run { |
16
|
0
|
|
|
0
|
1
|
|
my ( $self, %params ) = @_; |
17
|
|
|
|
|
|
|
|
18
|
0
|
|
|
|
|
|
return $self; |
19
|
|
|
|
|
|
|
} |
20
|
|
|
|
|
|
|
1; |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
__END__ |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head1 NAME |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
Armadito::Agent::HTTP::Client::ArmaditoAV::Event::DetectionEvent - ArmaditoAV DetectionEvent class |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=head1 DESCRIPTION |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
This is the class dedicated to DetectionEvent of ArmaditoAV api. |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head1 FUNCTIONS |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head2 run ( $self, %params ) |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
Run event related stuff. |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=head2 new ( $class, %params ) |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
Instanciate this class. |
41
|
|
|
|
|
|
|
|