| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package XML::EPP::Contact::Transfer::Response; |
|
2
|
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
3241
|
use Moose; |
|
|
0
|
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
|
4
|
|
|
|
|
|
|
use PRANG::Graph; |
|
5
|
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
sub root_element { 'trnData' } |
|
7
|
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
with |
|
9
|
|
|
|
|
|
|
'XML::EPP::Contact::RS', |
|
10
|
|
|
|
|
|
|
'XML::EPP::Contact::Node', |
|
11
|
|
|
|
|
|
|
; |
|
12
|
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
has_element 'id' => |
|
14
|
|
|
|
|
|
|
is => 'ro', |
|
15
|
|
|
|
|
|
|
isa => 'XML::EPP::Common::clIDType', |
|
16
|
|
|
|
|
|
|
; |
|
17
|
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
has_element 'trStatus' => |
|
20
|
|
|
|
|
|
|
is => 'ro', |
|
21
|
|
|
|
|
|
|
isa => 'XML::EPP::Common::trStatusType', |
|
22
|
|
|
|
|
|
|
; |
|
23
|
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
has_element 'requester' => |
|
26
|
|
|
|
|
|
|
is => 'ro', |
|
27
|
|
|
|
|
|
|
isa => 'XML::EPP::Common::clIDType', |
|
28
|
|
|
|
|
|
|
xml_nodeName => 'reID', |
|
29
|
|
|
|
|
|
|
; |
|
30
|
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
has_element 'requested' => |
|
32
|
|
|
|
|
|
|
is => 'rw', |
|
33
|
|
|
|
|
|
|
isa => 'PRANG::XMLSchema::dateTime', |
|
34
|
|
|
|
|
|
|
xml_nodeName => 'reDate', |
|
35
|
|
|
|
|
|
|
; |
|
36
|
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
has_element 'action_id' => |
|
38
|
|
|
|
|
|
|
is => 'rw', |
|
39
|
|
|
|
|
|
|
isa => 'XML::EPP::Common::clIDType', |
|
40
|
|
|
|
|
|
|
xml_nodeName => 'acID', |
|
41
|
|
|
|
|
|
|
; |
|
42
|
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
has_element 'action_date' => |
|
44
|
|
|
|
|
|
|
is => 'rw', |
|
45
|
|
|
|
|
|
|
isa => 'PRANG::XMLSchema::dateTime', |
|
46
|
|
|
|
|
|
|
xml_nodeName => 'acDate', |
|
47
|
|
|
|
|
|
|
; |
|
48
|
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
1; |
|
50
|
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
=head1 NAME |
|
52
|
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
? - implement ? |
|
54
|
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
=head1 SYNOPSIS |
|
56
|
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
TODO |
|
58
|
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
=head1 DESCRIPTION |
|
60
|
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
... |
|
62
|
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
=head2 XML Schema Definition |
|
64
|
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
<!-- |
|
66
|
|
|
|
|
|
|
<transfer> response elements. |
|
67
|
|
|
|
|
|
|
--> |
|
68
|
|
|
|
|
|
|
<complexType name="trnDataType"> |
|
69
|
|
|
|
|
|
|
<sequence> |
|
70
|
|
|
|
|
|
|
<element name="id" type="eppcom:clIDType"/> |
|
71
|
|
|
|
|
|
|
<element name="trStatus" type="eppcom:trStatusType"/> |
|
72
|
|
|
|
|
|
|
<element name="reID" type="eppcom:clIDType"/> |
|
73
|
|
|
|
|
|
|
<element name="reDate" type="dateTime"/> |
|
74
|
|
|
|
|
|
|
<element name="acID" type="eppcom:clIDType"/> |
|
75
|
|
|
|
|
|
|
<element name="acDate" type="dateTime"/> |
|
76
|
|
|
|
|
|
|
</sequence> |
|
77
|
|
|
|
|
|
|
</complexType> |
|
78
|
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
=cut |