line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Net::EPP::Frame::Command::Poll::Req; |
2
|
1
|
|
|
1
|
|
7
|
use base qw(Net::EPP::Frame::Command::Poll); |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
91
|
|
3
|
1
|
|
|
1
|
|
8
|
use strict; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
79
|
|
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
=pod |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
=head1 NAME |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
Net::EPP::Frame::Command::Poll::Req - an instance of L |
10
|
|
|
|
|
|
|
for the EPP CPollE> request command. |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
=head1 OBJECT HIERARCHY |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
L |
15
|
|
|
|
|
|
|
+----L |
16
|
|
|
|
|
|
|
+----L |
17
|
|
|
|
|
|
|
+----L |
18
|
|
|
|
|
|
|
+----L |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=cut |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
sub new { |
23
|
0
|
|
|
0
|
1
|
|
my $package = shift; |
24
|
0
|
|
|
|
|
|
my $self = bless($package->SUPER::new('poll'), $package); |
25
|
0
|
|
|
|
|
|
$self->getCommandNode->setAttribute('op' => 'req'); |
26
|
0
|
|
|
|
|
|
return $self; |
27
|
|
|
|
|
|
|
} |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head1 METHODS |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
This module does not define any methods in addition to those it inherits from |
32
|
|
|
|
|
|
|
its ancestors. |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=cut |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
1; |