line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package XML::EPP::Contact::ID; |
3
|
|
|
|
|
|
|
|
4
|
1
|
|
|
1
|
|
2496
|
use Moose; |
|
0
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
use PRANG::Graph; |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
with 'XML::EPP::Contact::Node'; |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
has_element 'value' => |
10
|
|
|
|
|
|
|
is => 'ro', |
11
|
|
|
|
|
|
|
isa => 'XML::EPP::Common::clIDType', |
12
|
|
|
|
|
|
|
xml_nodeName => '', |
13
|
|
|
|
|
|
|
; |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
has_attr 'result' => |
16
|
|
|
|
|
|
|
is => 'ro', |
17
|
|
|
|
|
|
|
isa => 'PRANG::XMLSchema::boolean', |
18
|
|
|
|
|
|
|
xml_name => 'paResult', |
19
|
|
|
|
|
|
|
; |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
1; |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=head1 NAME |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
XML::EPP::Contact::ID - implement paCLIDType |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head1 SYNOPSIS |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
TODO |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=head1 DESCRIPTION |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
... |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=head2 XML Schema Definition |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
<complexType name="paCLIDType"> |
38
|
|
|
|
|
|
|
<simpleContent> |
39
|
|
|
|
|
|
|
<extension base="eppcom:clIDType"> |
40
|
|
|
|
|
|
|
<attribute name="paResult" type="boolean" |
41
|
|
|
|
|
|
|
use="required"/> |
42
|
|
|
|
|
|
|
</extension> |
43
|
|
|
|
|
|
|
</simpleContent> |
44
|
|
|
|
|
|
|
</complexType> |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=cut |