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