line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package XML::EPP::Domain::Status; |
2
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
2397
|
use Moose; |
|
0
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
4
|
|
|
|
|
|
|
use PRANG::Graph; |
5
|
|
|
|
|
|
|
with 'XML::EPP::Domain::Node'; |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
use PRANG::XMLSchema::Types; |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
has_element 'value' => |
10
|
|
|
|
|
|
|
is => 'ro', |
11
|
|
|
|
|
|
|
isa => "PRANG::XMLSchema::normalizedString", |
12
|
|
|
|
|
|
|
xml_nodeName => '', |
13
|
|
|
|
|
|
|
; |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
has_attr 'status' => |
16
|
|
|
|
|
|
|
is => 'ro', |
17
|
|
|
|
|
|
|
isa => 'XML::EPP::Domain::statusValueType', |
18
|
|
|
|
|
|
|
required => 1, |
19
|
|
|
|
|
|
|
xml_name => 's', |
20
|
|
|
|
|
|
|
; |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
has_attr "lang" => |
23
|
|
|
|
|
|
|
is => "ro", |
24
|
|
|
|
|
|
|
isa => "PRANG::XMLSchema::language", |
25
|
|
|
|
|
|
|
default => "en", |
26
|
|
|
|
|
|
|
; |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
use Moose::Util::TypeConstraints; |
29
|
|
|
|
|
|
|
subtype "XML::EPP::Domain::statusType" => as __PACKAGE__; |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
1; |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=head1 NAME |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
? - implement ? |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head1 SYNOPSIS |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
TODO |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
=head1 DESCRIPTION |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
... |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
=head2 XML Schema Definition |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
<!-- |
48
|
|
|
|
|
|
|
Status is a combination of attributes and an optional |
49
|
|
|
|
|
|
|
human-readable message that may be expressed in languages other |
50
|
|
|
|
|
|
|
than English. |
51
|
|
|
|
|
|
|
--> |
52
|
|
|
|
|
|
|
<complexType name="statusType"> |
53
|
|
|
|
|
|
|
<simpleContent> |
54
|
|
|
|
|
|
|
<extension base="normalizedString"> |
55
|
|
|
|
|
|
|
<attribute name="s" type="domain:statusValueType" |
56
|
|
|
|
|
|
|
use="required"/> |
57
|
|
|
|
|
|
|
<attribute name="lang" type="language" |
58
|
|
|
|
|
|
|
default="en"/> |
59
|
|
|
|
|
|
|
</extension> |
60
|
|
|
|
|
|
|
</simpleContent> |
61
|
|
|
|
|
|
|
</complexType> |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
=cut |