line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package XML::EPP::Domain::AddRem; |
2
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
2429
|
use Moose; |
|
0
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
4
|
|
|
|
|
|
|
use PRANG::Graph; |
5
|
|
|
|
|
|
|
with 'XML::EPP::Domain::Node'; |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
use PRANG::XMLSchema::Types; |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
has_element 'ns' => |
10
|
|
|
|
|
|
|
is => 'rw', |
11
|
|
|
|
|
|
|
isa => 'XML::EPP::Domain::NS', |
12
|
|
|
|
|
|
|
xml_required => 0, |
13
|
|
|
|
|
|
|
; |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
has_element 'contact' => |
16
|
|
|
|
|
|
|
is => 'rw', |
17
|
|
|
|
|
|
|
isa => 'ArrayRef[XML::EPP::Domain::Contact]', |
18
|
|
|
|
|
|
|
xml_min => 0, |
19
|
|
|
|
|
|
|
xml_required => 0, |
20
|
|
|
|
|
|
|
; |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
has_element 'status' => |
23
|
|
|
|
|
|
|
is => 'rw', |
24
|
|
|
|
|
|
|
isa => 'ArrayRef[XML::EPP::Domain::Status]', |
25
|
|
|
|
|
|
|
xml_min => 0, |
26
|
|
|
|
|
|
|
xml_max => 11, |
27
|
|
|
|
|
|
|
required => 1, |
28
|
|
|
|
|
|
|
; |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
1; |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head1 NAME |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
? - implement ? |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=head1 SYNOPSIS |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
TODO |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=head1 DESCRIPTION |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
... |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=head2 XML Schema Definition |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
<!-- |
47
|
|
|
|
|
|
|
Data elements that can be added or removed. |
48
|
|
|
|
|
|
|
--> |
49
|
|
|
|
|
|
|
<complexType name="addRemType"> |
50
|
|
|
|
|
|
|
<sequence> |
51
|
|
|
|
|
|
|
<element name="ns" type="domain:nsType" |
52
|
|
|
|
|
|
|
minOccurs="0"/> |
53
|
|
|
|
|
|
|
<element name="contact" type="domain:contactType" |
54
|
|
|
|
|
|
|
minOccurs="0" maxOccurs="unbounded"/> |
55
|
|
|
|
|
|
|
<element name="status" type="domain:statusType" |
56
|
|
|
|
|
|
|
minOccurs="0" maxOccurs="11"/> |
57
|
|
|
|
|
|
|
</sequence> |
58
|
|
|
|
|
|
|
</complexType> |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
=cut |