File Coverage

blib/lib/Net/DRI/Data/Contact/ASIA.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             ## Domain Registry Interface, Handling of contact data for .ASIA
2             ##
3             ## Copyright (c) 2007,2008,2013 Tonnerre Lombard . All rights reserved.
4             ##
5             ## This file is part of Net::DRI
6             ##
7             ## Net::DRI is free software; you can redistribute it and/or modify
8             ## it under the terms of the GNU General Public License as published by
9             ## the Free Software Foundation; either version 2 of the License, or
10             ## (at your option) any later version.
11             ##
12             ## See the LICENSE file that comes with this distribution for more details.
13             ####################################################################################################
14              
15             package Net::DRI::Data::Contact::ASIA;
16              
17 2     2   1320 use strict;
  2         3  
  2         48  
18 2     2   7 use warnings;
  2         2  
  2         42  
19              
20 2     2   7 use base qw/Net::DRI::Data::Contact/;
  2         1  
  2         524  
21              
22             __PACKAGE__->register_attributes(qw(cedcc cedsp cedcity cedetype cediform cedinum cedothertype cedoiform));
23              
24             =pod
25              
26             =head1 NAME
27              
28             Net::DRI::Data::Contact::ASIA - Handle .ASIA contact data for Net::DRI
29              
30             =head1 DESCRIPTION
31              
32             This subclass of Net::DRI::Data::Contact adds accessors and validation for
33             .AERO specific data.
34              
35             =head1 METHODS
36              
37             The following accessors/mutators can be called in chain, as they all return the object itself.
38              
39             =head2 cedcc()
40              
41             Stores the CED Country Code.
42              
43             =head2 cedsp()
44              
45             Stores the CED State/Province.
46              
47             =head2 cedcity()
48              
49             Stores the CED City.
50              
51             =head2 cedetype()
52              
53             Stores the CED Legal Entity Type.
54              
55             =head2 cediform()
56              
57             Stores the CED Identification Form.
58              
59             =head2 cedinum()
60              
61             Stores the CED Identification Number.
62              
63             =head2 cedothertype()
64              
65             Stores the CED other legal entity type.
66              
67             =head2 cedoiform()
68              
69             Stores the CED other identification form.
70              
71             =head1 SUPPORT
72              
73             For now, support questions should be sent to:
74              
75             Enetdri@dotandco.comE
76              
77             Please also see the SUPPORT file in the distribution.
78              
79             =head1 SEE ALSO
80              
81             http://www.dotandco.com/services/software/Net-DRI/
82              
83             =head1 AUTHOR
84              
85             Tonnerre Lombard Etonnerre.lombard@sygroup.chE
86              
87             =head1 COPYRIGHT
88              
89             Copyright (c) 2007,2008,2013 Patrick Mevzek .
90             All rights reserved.
91              
92             This program is free software; you can redistribute it and/or modify
93             it under the terms of the GNU General Public License as published by
94             the Free Software Foundation; either version 2 of the License, or
95             (at your option) any later version.
96              
97             See the LICENSE file that comes with this distribution for more details.
98              
99             =cut
100              
101             ####################################################################################################
102              
103              
104             ####################################################################################################
105             1;
106              
107