File Coverage

blib/lib/Net/DRI/Protocol/AdamsNames/WS.pm
Criterion Covered Total %
statement 15 32 46.8
branch n/a
condition n/a
subroutine 5 9 55.5
pod 1 2 50.0
total 21 43 48.8


line stmt bran cond sub pod time code
1             ## Domain Registry Interface, AdamsNames Web Services Protocol
2             ## As seen on http://www.adamsnames.tc/api/xmlrpc.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::AdamsNames::WS;
17              
18 1     1   932 use strict;
  1         3  
  1         39  
19 1     1   6 use warnings;
  1         2  
  1         25  
20              
21 1     1   4 use base qw(Net::DRI::Protocol);
  1         1  
  1         79  
22 1     1   458 use Net::DRI::Protocol::AdamsNames::WS::Message;
  1         2  
  1         7  
23 1     1   30 use DateTime::Format::Strptime;
  1         1  
  1         201  
24              
25             =pod
26              
27             =head1 NAME
28              
29             Net::DRI::Protocol::AdamsNames::WS - AdamsNames Web Services Protocol for Net::DRI
30              
31             =head1 DESCRIPTION
32              
33             Please see the README file for details.
34              
35             =head1 SUPPORT
36              
37             For now, support questions should be sent to:
38              
39             Enetdri@dotandco.comE
40              
41             Please also see the SUPPORT file in the distribution.
42              
43             =head1 SEE ALSO
44              
45             Ehttp://www.dotandco.com/services/software/Net-DRI/E
46              
47             =head1 AUTHOR
48              
49             Patrick Mevzek, Enetdri@dotandco.comE
50              
51             =head1 COPYRIGHT
52              
53             Copyright (c) 2009-2010,2013 Patrick Mevzek .
54             All rights reserved.
55              
56             This program is free software; you can redistribute it and/or modify
57             it under the terms of the GNU General Public License as published by
58             the Free Software Foundation; either version 2 of the License, or
59             (at your option) any later version.
60              
61             See the LICENSE file that comes with this distribution for more details.
62              
63             =cut
64              
65             ####################################################################################################
66              
67             sub new
68             {
69 0     0 1   my ($c,$ctx,$rp)=@_;
70 0           my $self=$c->SUPER::new($ctx);
71 0           $self->name('adamsnames_ws');
72 0           $self->version('0.1');
73 0     0     $self->factories('message',sub { my $m=Net::DRI::Protocol::AdamsNames::WS::Message->new(); $m->version('0.1'); return $m; });
  0            
  0            
  0            
74 0           $self->_load($rp);
75 0           $self->{dt_parse}=DateTime::Format::Strptime->new(time_zone=>'Europe/London', pattern=>'%Y-%m-%d');
76 0           return $self;
77             }
78              
79             sub _load
80             {
81 0     0     my ($self,$rp)=@_;
82 0           my @class=map { 'Net::DRI::Protocol::AdamsNames::WS::'.$_ } (qw/Domain/);
  0            
83 0           return $self->SUPER::_load(@class);
84             }
85              
86             sub transport_default
87             {
88 0     0 0   my ($self)=@_;
89 0           return (protocol_connection => 'Net::DRI::Protocol::AdamsNames::WS::Connection', protocol_version => 1);
90             }
91              
92             ####################################################################################################
93             1;