File Coverage

blib/lib/XML/EPP/Contact/Transfer.pm
Criterion Covered Total %
statement 1 3 33.3
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 2 4 50.0


line stmt bran cond sub pod time code
1              
2             package XML::EPP::Contact::Transfer;
3              
4 1     1   2562 use Moose;
  0            
  0            
5             use PRANG::Graph;
6              
7             sub root_element { 'transfer' }
8              
9             with 'XML::EPP::Contact::RQ', 'XML::EPP::Contact::Node';
10              
11             has_element 'id' =>
12             is => 'ro',
13             isa => 'XML::EPP::Common::clIDType',
14             ;
15              
16             has_element 'auth_info' =>
17             is => 'ro',
18             isa => 'XML::EPP::Contact::AuthInfo',
19             xml_required => 0,
20             xml_nodeName => 'authInfo',
21             ;
22              
23             1;
24              
25             =head1 NAME
26              
27             ? - implement ?
28              
29             =head1 SYNOPSIS
30              
31             TODO
32              
33             =head1 DESCRIPTION
34              
35             ...
36              
37             =head2 XML Schema Definition
38              
39             <!--
40             Child elements of the <info> and <transfer> commands.
41             -->
42             <complexType name="authIDType">
43             <sequence>
44             <element name="id" type="eppcom:clIDType"/>
45             <element name="authInfo" type="contact:authInfoType"
46             minOccurs="0"/>
47             </sequence>
48             </complexType>
49              
50             =cut