File Coverage

blib/lib/Net/DRI/Protocol/DAS/AdamsNames.pm
Criterion Covered Total %
statement 15 28 53.5
branch n/a
condition n/a
subroutine 5 9 55.5
pod 1 2 50.0
total 21 39 53.8


line stmt bran cond sub pod time code
1             ## Domain Registry Interface, DAS Protocol for AdamsNames
2             ## as specified on http://www.adamsnames.tc/bulk/querying.html
3             ##
4             ## Copyright (c) 2009-2010,2013 Patrick Mevzek . All rights reserved.
5             ##
6             ## This file is part of Net::DRI
7             ##
8             ## Net::DRI is free software; you can redistribute it and/or modify
9             ## it under the terms of the GNU General Public License as published by
10             ## the Free Software Foundation; either version 2 of the License, or
11             ## (at your option) any later version.
12             ##
13             ## See the LICENSE file that comes with this distribution for more details.
14             ####################################################################################################
15              
16             package Net::DRI::Protocol::DAS::AdamsNames;
17              
18 1     1   646 use strict;
  1         2  
  1         21  
19 1     1   3 use warnings;
  1         2  
  1         19  
20              
21 1     1   3 use base qw(Net::DRI::Protocol);
  1         2  
  1         57  
22              
23 1     1   4 use Net::DRI::Util;
  1         1  
  1         14  
24 1     1   367 use Net::DRI::Protocol::DAS::AdamsNames::Message;
  1         2  
  1         4  
25              
26             =pod
27              
28             =head1 NAME
29              
30             Net::DRI::Protocol::DAS::AdamsNames - AdamsNames DAS Protocol (Domain Availability Service) for Net::DRI
31              
32             =head1 DESCRIPTION
33              
34             Please see the README file for details.
35              
36             =head1 SUPPORT
37              
38             For now, support questions should be sent to:
39              
40             Enetdri@dotandco.comE
41              
42             Please also see the SUPPORT file in the distribution.
43              
44             =head1 SEE ALSO
45              
46             Ehttp://www.dotandco.com/services/software/Net-DRI/E
47              
48             =head1 AUTHOR
49              
50             Patrick Mevzek, Enetdri@dotandco.comE
51              
52             =head1 COPYRIGHT
53              
54             Copyright (c) 2009-2010,2013 Patrick Mevzek .
55             All rights reserved.
56              
57             This program is free software; you can redistribute it and/or modify
58             it under the terms of the GNU General Public License as published by
59             the Free Software Foundation; either version 2 of the License, or
60             (at your option) any later version.
61              
62             See the LICENSE file that comes with this distribution for more details.
63              
64             =cut
65              
66             ####################################################################################################
67              
68             sub new
69             {
70 0     0 1   my ($c,$ctx,$rp)=@_;
71 0           my $self=$c->SUPER::new($ctx);
72 0           $self->name('DAS');
73 0           my $version=Net::DRI::Util::check_equal($rp->{version},['1.0'],'1.0');
74 0           $self->version($version);
75 0     0     $self->factories('message',sub { return Net::DRI::Protocol::DAS::AdamsNames::Message->new(@_)->version($version); });
  0            
76 0           $self->_load($rp);
77 0           return $self;
78             }
79              
80             sub _load
81             {
82 0     0     my ($self,$rp)=@_;
83 0           return $self->SUPER::_load('Net::DRI::Protocol::DAS::AdamsNames::Domain');
84             }
85              
86             sub transport_default
87             {
88 0     0 0   my ($self)=@_;
89 0           return (protocol_connection => 'Net::DRI::Protocol::DAS::AdamsNames::Connection', protocol_version => 1);
90             }
91              
92             ####################################################################################################
93             1;