line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package XML::EPP::Contact::RS; |
3
|
|
|
|
|
|
|
|
4
|
1
|
|
|
1
|
|
2403
|
use Moose::Role; |
|
0
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
with qw(XML::EPP::Contact); |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
sub is_command { 0 } |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
1; |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
=head1 NAME |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
XML::EPP::Contact::RS |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 SYNOPSIS |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
TODO |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head1 DESCRIPTION |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
This module provides a role for all the Contact command responses. |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head2 XML Schema Definition |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
<!-- |
27
|
|
|
|
|
|
|
Child response elements. |
28
|
|
|
|
|
|
|
--> |
29
|
|
|
|
|
|
|
<element name="chkData" type="contact:chkDataType"/> |
30
|
|
|
|
|
|
|
<element name="creData" type="contact:creDataType"/> |
31
|
|
|
|
|
|
|
<element name="infData" type="contact:infDataType"/> |
32
|
|
|
|
|
|
|
<element name="panData" type="contact:panDataType"/> |
33
|
|
|
|
|
|
|
<element name="trnData" type="contact:trnDataType"/> |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=cut |