File Coverage

blib/lib/Net/DRI/Protocol/AdamsNames/WS/Connection.pm
Criterion Covered Total %
statement 6 8 75.0
branch n/a
condition n/a
subroutine 2 3 66.6
pod 0 1 0.0
total 8 12 66.6


line stmt bran cond sub pod time code
1             ## Domain Registry Interface, AdamsNames Web Services Connection handling
2             ##
3             ## Copyright (c) 2009 Patrick Mevzek . 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::Protocol::AdamsNames::WS::Connection;
16              
17 1     1   699 use strict;
  1         1  
  1         29  
18 1     1   4 use warnings;
  1         2  
  1         57  
19              
20             =pod
21              
22             =head1 NAME
23              
24             Net::DRI::Protocol::AdamsNames::WS::Connection - AdamsNames Web Services Connection handling for Net::DRI
25              
26             =head1 DESCRIPTION
27              
28             Please see the README file for details.
29              
30             =head1 SUPPORT
31              
32             For now, support questions should be sent to:
33              
34             Enetdri@dotandco.comE
35              
36             Please also see the SUPPORT file in the distribution.
37              
38             =head1 SEE ALSO
39              
40             Ehttp://www.dotandco.com/services/software/Net-DRI/E
41              
42             =head1 AUTHOR
43              
44             Patrick Mevzek, Enetdri@dotandco.comE
45              
46             =head1 COPYRIGHT
47              
48             Copyright (c) 2009 Patrick Mevzek .
49             All rights reserved.
50              
51             This program is free software; you can redistribute it and/or modify
52             it under the terms of the GNU General Public License as published by
53             the Free Software Foundation; either version 2 of the License, or
54             (at your option) any later version.
55              
56             See the LICENSE file that comes with this distribution for more details.
57              
58             =cut
59              
60             ####################################################################################################
61              
62             sub transport_default
63             {
64 0     0 0   my ($self,$tname)=@_;
65 0           return (defer => 1, has_login => 0, has_logout => 0);
66             }
67              
68             ####################################################################################################
69             1;