line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package XML::EPP::Domain::RQ; |
3
|
|
|
|
|
|
|
|
4
|
1
|
|
|
1
|
|
2684
|
use Moose::Role; |
|
0
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
with qw(XML::EPP::Domain); |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
sub is_command { 1 } |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
1; |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
=head1 NAME |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
XML::EPP::Domain::RQ |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 SYNOPSIS |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
This module provides a role for all the Domain command request. |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head1 DESCRIPTION |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
... |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head2 XML Schema Definition |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
<!-- |
27
|
|
|
|
|
|
|
Child elements found in EPP commands. |
28
|
|
|
|
|
|
|
--> |
29
|
|
|
|
|
|
|
<element name="check" type="domain:mNameType"/> |
30
|
|
|
|
|
|
|
<element name="create" type="domain:createType"/> |
31
|
|
|
|
|
|
|
<element name="delete" type="domain:sNameType"/> |
32
|
|
|
|
|
|
|
<element name="info" type="domain:infoType"/> |
33
|
|
|
|
|
|
|
<element name="renew" type="domain:renewType"/> |
34
|
|
|
|
|
|
|
<element name="transfer" type="domain:transferType"/> |
35
|
|
|
|
|
|
|
<element name="update" type="domain:updateType"/> |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=cut |