line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package XML::EPP::Domain::Change; |
2
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
2428
|
use Moose; |
|
0
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
4
|
|
|
|
|
|
|
use PRANG::Graph; |
5
|
|
|
|
|
|
|
with 'XML::EPP::Domain::Node'; |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
use PRANG::XMLSchema::Types; |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
has_element 'registrant' => |
10
|
|
|
|
|
|
|
is => 'rw', |
11
|
|
|
|
|
|
|
isa => 'XML::EPP::Domain::clIDChgType', |
12
|
|
|
|
|
|
|
xml_required => 0, |
13
|
|
|
|
|
|
|
; |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
has_element 'auth_info' => |
16
|
|
|
|
|
|
|
is => 'ro', |
17
|
|
|
|
|
|
|
isa => 'XML::EPP::Domain::AuthInfo', |
18
|
|
|
|
|
|
|
xml_required => 0, |
19
|
|
|
|
|
|
|
xml_nodeName => 'authInfo', |
20
|
|
|
|
|
|
|
; |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
1; |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head1 NAME |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
? - implement ? |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=head1 SYNOPSIS |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
TODO |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head1 DESCRIPTION |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
... |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=head2 XML Schema Definition |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
<!-- |
39
|
|
|
|
|
|
|
Data elements that can be changed. |
40
|
|
|
|
|
|
|
--> |
41
|
|
|
|
|
|
|
<complexType name="chgType"> |
42
|
|
|
|
|
|
|
<sequence> |
43
|
|
|
|
|
|
|
<element name="registrant" type="domain:clIDChgType" |
44
|
|
|
|
|
|
|
minOccurs="0"/> |
45
|
|
|
|
|
|
|
<element name="authInfo" type="domain:authInfoChgType" |
46
|
|
|
|
|
|
|
minOccurs="0"/> |
47
|
|
|
|
|
|
|
</sequence> |
48
|
|
|
|
|
|
|
</complexType> |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=cut |